淡语

导航

微信小程序监听左右滑动事件,进行切换操作

页面:
<van-tabs class="tabs-main" active="{{ tab.active }}" bind:change="onChange" bindtouchstart='touchstart' bindtouchmove='touchmove' bindtouchend='touchend'>
 
</van-tabs>
 
JS:
 
// pages/subjectOne/subjectOne.js

//触屏开始点坐标
var startDot = {
X: 0,
Y: 0
};
//触屏到点坐标
var touchDot = {
X: 0,
Y: 0
};
var time = 0; //触屏时间
var number; //定时器ID




Page({

/**
* 页面的初始数据
*/
data: {
 
},


onAnswerRaidonChange(event) {
this.setData({
radio: event.detail
});


console.log(this.data);
},




/**
* 触屏开始计时和获取坐标
*/
touchstart: function (event) {
startDot.X = event.touches[0].pageX;
startDot.Y = event.touches[0].pageY;
number = setInterval(function () { time++; }, 100);
},
/**
* 判断滑动距离和时间是否需要切换页面
*/
touchmove: function (event) {
touchDot.X = event.touches[0].pageX;
touchDot.Y = event.touches[0].pageY;
//向左滑处理
if ((startDot.X - touchDot.X) > 200 && (startDot.Y - touchDot.Y) < 150 && time < 5 && time > 0.1) {
wx.showToast({
title: '左',
icon: 'success',
duration: 2000
})

clearInterval(number);
time = 0;
}
//向右滑处理
if ((touchDot.X - startDot.X) > 200 && (touchDot.Y - startDot.Y) < 150 && time < 5 && time > 0.1) {
wx.showToast({
title: '右',
icon: 'success',
duration: 2000
})
clearInterval(number);
time = 0;
}
},
/**
* 结束触屏重置计时
*/
touchend: function (event) {
clearInterval(number);
time = 0;
},


/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {

},

/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {

},

/**
* 生命周期函数--监听页面显示
*/
onShow: function () {

},

/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {

},

/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {

},

/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {

},

/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {

},

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

}
})

posted on 2020-02-03 22:20  object360  阅读(3910)  评论(0编辑  收藏  举报