PHP前端开发

详解微信小程序左右滑动切换页面

百变鹏仔 4天前 #前端问答
文章标签 详解

微信小程序——左右滑动切换页面事件

微信小程序的左右滑动触屏事件,主要有三个事件:touchstart,touchmove,touchend。

这三个事件最重要的属性是pageX和pageY,表示X,Y坐标。

touchstart在触摸开始时触发事件;
touchend在触摸结束时触发事件;
touchmove触摸的过程中不断激发这个事件;

这三个事件都有一个timeStamp的属性,查看timeStamp属性,可以看到顺序是touchstart => touchmove=> touchmove => ··· =>touchmove =>touchend。

第一步:在wxml文件中绑定事件(需要左右滑动的界面)

<view> // do something</view>

第二步:在js文件中处理左右滑动逻辑

var touchDot = 0;//触摸时的原点var time = 0;// 时间记录,用于滑动时且时间小于1s则执行左右滑动var interval = "";// 记录/清理 时间记录var nth = 0;// 设置活动菜单的indexvar 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  nthMax ? true : false;        }        if(nth == index){ // 下一个的状态更改          arr.active = true;          name = arr.value;        }        return arr;      })      this.getNews(name); // 获取新闻列表      this.setData({menu : tmp}); // 更新菜单    }  }  // 向右滑动  if(touchMove - touchDot &gt;= 40 &amp;&amp; time  0){      nth = --nth