场景:

vue环境,在组件监听 touchEnd 用户触摸滑动结束事件,在安卓端手机用户滑动结束后没有执行 touchEnd 的事件

解决办法:

在 滑动过程中的事件 touchMove 中,延迟.05秒判断当前距离顶部的距离是否跟当前距离顶部的距离相同,然后把 touchMove 中携带的参数传递给 touchEnd ,主动调用。

看代码:

	<view :id="'myVideo'+index" @touchstart="touchStart" @touchmove="touchMove" :data-index="index" :data-src="item.voideoUrl"></view>
// 划动过程坐标方法
			touchMove(e) {
				setTimeout(() => {
					if (this.difference == difference) this.touchEnd(e)
				}, 50)
				this.difference = difference // 拖动的距离

			},
			// 划动结束坐标方法
			touchEnd(e) {
}

Logo

前往低代码交流专区

更多推荐