微信小程序如何禁止View的橡皮筋回弹效果?
双向滚动的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>
回复
1个回答
test
2024-06-29
使用 overscroll-behavior: none
即可禁止ios端的滚动回弹效果,或者使用 overscroll-behavior-x
、overscroll-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;
}
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容