微信小程序如何禁止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.6k
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;
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏