touchEnd 不执行解决办法
场景:vue环境,在组件监听touchEnd 用户触摸滑动结束事件,在安卓端手机用户滑动结束后没有执行touchEnd 的事件解决办法:在 滑动过程中的事件 touchMove 中,延迟.05秒判断当前距离顶部的距离是否跟当前距离顶部的距离相同,然后把touchMove 中携带的参数传递给 touchEnd ,主动调用。看代码:<view :id="'myVideo'+index" @tou
·
场景:
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) {
}
更多推荐
已为社区贡献38条内容
所有评论(0)