微信小程序滑动穿透问题使用catchtouchmove

问题复现:
在这里插入图片描述

顶部分类可以滑动到另一个分类用的scroll-view,图中圈中部分仅仅只是一个小区域横向滑动,不需要滑动到尽头切换分类,

解决方法:

<scroll-view class="fdlist" scroll-x="true" catchtouchmove='catchTouchMove'>
在scroll-view中加入catchtouchmove事件,
在js中加入这个函数

	catchTouchMove: function() {
	    return false;
	  },

猜你喜欢

转载自blog.csdn.net/qq_45432996/article/details/107845366
今日推荐