双向滚动的View组件Ios端在滚动到边缘时如何关闭回弹效果呢?
我的代码:
<view class="h-300px overflow-auto">
<view class="w-2000px h-2000px bg-red"></view>
</view>
尝试过以下方案均没效果:
scroll-view + bounces
<scroll-view scroll-y="{{true}}" enhanced="{{true}}" bounces="{{false}}"> </scroll-view>
- catchtouchmove
<view class="h-300px overflow-auto" catchtouchmove="return">
<view class="w-2000px h-2000px bg-red"></view>
</view>
使用
overscroll-behavior: none
即可禁止ios端的滚动回弹效果,或者使用overscroll-behavior-x
、overscroll-behavior-y
分别控制水平、垂直方向的行为,详细可参考 MDN overscroll-behavior。示例如下: