小程序 手机左滑右滑事件监听

Posted wangshishuai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序 手机左滑右滑事件监听相关的知识,希望对你有一定的参考价值。




<view class="touch" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" ></view>


// 触摸开始事件 touchStart: function (e) touchDot = e.touches[0].pageX; // 获取触摸时的原点 // 使用js计时器记录时间 interval = setInterval(function () time++; , 100); , // 触摸移动事件 touchMove: function (e) var touchMove = e.touches[0].pageX; console.log("touchMove:" + touchMove + " touchDot:" + touchDot + " diff:" + (touchMove - touchDot)); // 向左滑动 if (touchMove - touchDot <= -40 && time < 10) // wx.switchTab( // url: ‘../左滑页面/左滑页面‘ // ); console.log(213) // 向右滑动 if (touchMove - touchDot >= 40 && time < 10) console.log(向右滑动); wx.switchTab( url: pages/position_man/position_man ); console.log(54645) , // 触摸结束事件 touchEnd: function (e) clearInterval(interval); // 清除setInterval time = 0; ,

 

以上是关于小程序 手机左滑右滑事件监听的主要内容,如果未能解决你的问题,请参考以下文章

Vue移动端左滑右滑

touch监听判断手指的上滑,下滑,左滑,右滑,事件监听

HarmonyOS 监听滑动事件左滑,右滑,上滑,下滑,以及返回值的意义

移动端 Touch 事件

前端托牵效果

微信小程序移动到最右边属性