小程序手动禁止swiper滑动
2018-12-12 本文已影响0人
不再犹豫Debug
swiper 组件实现水平滑动切换,有时候只想通过点击按钮切换,需要禁用手动滑动切换(因为手滑会卡)。可以用下面的实现方法:
<swiper-item catchtouchmove="stopTouchMove">
方法内
stopTouchMove(){
return false
}
swiper 组件实现水平滑动切换,有时候只想通过点击按钮切换,需要禁用手动滑动切换(因为手滑会卡)。可以用下面的实现方法:
<swiper-item catchtouchmove="stopTouchMove">
方法内
stopTouchMove(){
return false
}