微信小程序如何禁止View的橡皮筋回弹效果?

双向滚动的View组件Ios端在滚动到边缘时如何关闭回弹效果呢?

我的代码:

<view class="h-300px overflow-auto">
  <view class="w-2000px h-2000px bg-red"></view>
</view>

尝试过以下方案均没效果:

  1. scroll-view + bounces

    <scroll-view scroll-y="{{true}}" enhanced="{{true}}" bounces="{{false}}">
    </scroll-view>
  2. catchtouchmove
<view class="h-300px overflow-auto" catchtouchmove="return">
  <view class="w-2000px h-2000px bg-red"></view>
</view>
阅读 4.5k
2 个回答

使用 overscroll-behavior: none 即可禁止ios端的滚动回弹效果,或者使用 overscroll-behavior-xoverscroll-behavior-y 分别控制水平、垂直方向的行为,详细可参考 MDN overscroll-behavior

示例如下:

<view class="demo h-300px overflow-auto">
  <view class="w-2000px h-2000px bg-red"></view>
</view>
.demo {
  overscroll-behavior: none;
}
推荐问题
宣传栏