Rumah > Artikel > hujung hadapan web > uniapp swiper组件如何禁止滑动
uniapp swiper组件禁止滑动的方法:1、在【swiper-item】增加一个方法,代码为【0adc886254816f3c5832f8c2f7fec2e1】;2、js方法实现返回false。<swiper-item catchtouchmove="stopTouchMove">
本教程操作环境:windows7系统、uni-app2.5.1版本、thinkpad t480电脑。
uniapp swiper组件禁止滑动的方法:
swiper 组件实现水平滑动切换,有时候只想通过点击按钮切换,需要禁用手动滑动切换。可以用下面的实现方法:
wxml:在 swiper-item 增加一个方法
<swiper-item catchtouchmove="stopTouchMove">
js:方法实现返回false
stopTouchMove: function() { return false; }
推荐(免费):uni-app开发教程
Atas ialah kandungan terperinci uniapp swiper组件如何禁止滑动. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!