微信小程序swiper组件禁用手动滑动

给swiper-item添加属性catchtouchmove="stopTouchMove"

然后在js中定义stopTouchMove方法

  //禁用swiper滑动功能
  stopTouchMove: function() {
    return false;
  },
发布了181 篇原创文章 · 获赞 68 · 访问量 9万+

猜你喜欢

转载自blog.csdn.net/wx_lanyu/article/details/99059139