⼩程序左右滑动切换页⾯详解及实例代码
⼩程序——左右滑动切换页⾯事件
⼩程序的左右滑动触屏事件,主要有三个事件:touchstart,touchmove,touchend。
这三个事件最重要的属性是pageX和pageY,表⽰X,Y坐标。
touchstart在触摸开始时触发事件;
touchend在触摸结束时触发事件;
touchmove触摸的过程中不断激发这个事件;
这三个事件都有⼀个timeStamp的属性,查看timeStamp属性,可以看到顺序是touchstart => touchmove=> touchmove => ···=>touchmove =>touchend。
第⼀步:在wxml⽂件中绑定事件(需要左右滑动的界⾯)
<view class="container" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd">
// do something
</view>
第⼆步:在js⽂件中处理左右滑动逻辑
var touchDot = 0;//触摸时的原点
var time = 0;// 时间记录,⽤于滑动时且时间⼩于1s则执⾏左右滑动
var interval = "";// 记录/清理时间记录
var nth = 0;// 设置活动菜单的index
var nthMax = 5;//活动菜单的最⼤个数
var tmpFlag = true;// 判断左右华东超出菜单最⼤值时不再执⾏滑动事件
// 触摸开始事件
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){
if(tmpFlag && nth < nthMax){ //每次移动中且滑动时不超过最⼤值只执⾏⼀次
var tmp = u.map(function (arr, index) {
tmpFlag = false;
if(arr.active){ // 当前的状态更改
nth = index;
++nth;
arr.active = nth > nthMax ? true : false;
}
if(nth == index){ // 下⼀个的状态更改
arr.active = true;
name = arr.value;
}
return arr;
})
this.setData({menu : tmp}); // 更新菜单
}
}
// 向右滑动
if(touchMove - touchDot >= 40 && time < 10){
if(tmpFlag && nth > 0){
代码转换nth = --nth < 0 ? 0 : nth;
var tmp = u.map(function (arr, index) {
tmpFlag = false;
arr.active = false;
// 上⼀个的状态更改
if(nth == index){
arr.active = true;
name = arr.value;
}
return arr;
})
this.setData({menu : tmp}); // 更新菜单
}
}
// touchDot = touchMove; //每移动⼀次把上⼀次的点作为原点(好像没啥⽤)},
// 触摸结束事件
touchEnd:function(e){
clearInterval(interval); // 清除setInterval
time = 0;
tmpFlag = true; // 回复滑动事件
},
感谢阅读,希望能帮助到⼤家,谢谢⼤家对本站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论