微信小程序向左向右滑动事件
程序员文章站
2022-05-05 19:09:25
...
<view bindtouchstart="touchstart" bindtouchend="touchend">向左向左向左,向右滑动啦啦啦</view>
Page({
data: {
nowclientX: ""
},
touchstart(e) {
console.log(e)
this.setData({
nowclientX: e.changedTouches[0].clientX
})
},
touchend(e) {
let nowclientX = this.data.nowclientX;
let clientX = e.changedTouches[0].clientX;
if (clientX > nowclientX) {
console.log("向右滑动")
} else {
console.log("向左滑动")
}
}
})
上一篇: 微信小程序按钮隐藏显示view
下一篇: js点击按钮div显示隐藏