(y坐标结束位置-y坐标开始位置=y坐标滑动的距离) const subY=e.changedTouches[0].clientY - this.startData.clientY; /* 这里我后去设备的宽度,判断在设备的左右响应的位置滑动才会触发 */ // 设备宽度 let screenWidth = 0; // 使用uniapp获取设备信息 uni.getSystemInfo({ ...
我们可以在添加手指滑动的时间和滑动的距离来加强手指滑动的操作 1.在touchstart滑动开始时记录当前时间,在滑动结束时获取当前时间,根据时间差来增强判断 1let noeTime = Date.now() -this.lastTime;2console.log(noeTime, 'noetime'); 2.根据滑动距离来增强判断 1/*判断移动距离*/2let distance = event.chan...
我们可以在添加手指滑动的时间和滑动的距离来加强手指滑动的操作 1.在touchstart滑动开始时记录当前时间,在滑动结束时获取当前时间,根据时间差来增强判断 1let noeTime = Date.now() -this.lastTime;2console.log(noeTime, 'noetime'); 2.根据滑动距离来增强判断 1/*判断移动距离*/2let distance = event.chan...