云服务器网:购买云服务器和VPS必上的网站!

微信小程序如何切换当前页面

微信小程序如何切换当前页面微信小程序通过左右滑动切换当前页面,实现方法:在wxml文件中绑定事件,代码:<viewclass=\"container\"bindtouchstart=\"touchStart\"bindtouchmove=\"touchMove\"bind

微信小程序如何切换当前页面

微信小程序通过左右滑动切换当前页面,实现方法:

在wxml文件中绑定事件,代码:

<viewclass="container"bindtouchstart="touchStart"bindtouchmove="touchMove"bindtouchend="touchEnd">

//dosomething

</view>

在js文件中处理左右滑动逻辑,代码:

vartouchDot=0;//触摸时的原点

vartime=0;//时间记录,用于滑动时且时间小于1s则履行左右滑动

varinterval="";//记录/清算时间记录

varnth=0;//设置活动菜单的index

varnthMax=5;//活动菜单的最大个数

vartmpFlag=true;//判断左右华东超越菜单最大值时不再履行滑动事件

//触摸开始事件

touchStart:function(e){

touchDot=e.touches[0].pageX;//获得触摸时的原点

//使用js计时器记录时间

interval=setInterval(function(){

time++;

},100);

},

//触摸移动事件

touchMove:function(e){

vartouchMove=e.touches[0].pageX;

console.log("touchMove:"+touchMove+"touchDot:"+touchDot+"diff:"+(touchMove-touchDot));

//向左滑动

if(touchMove-touchDot<=⑷0&&time<10){

if(tmpFlag&&nth<nthMax){//每次移动中且滑动时不超过最大值只履行一次

vartmp=this.data.menu.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;

}

returnarr;

})

this.getNews(name);//获得新闻列表

this.setData({menu:tmp});//更新菜单

}

}

//向右滑动

if(touchMove-touchDot>=40&&time<10){

if(tmpFlag&&nth>0){

nth=--nth<0?0:nth;

vartmp=this.data.menu.map(function(arr,index){

tmpFlag=false;

arr.active=false;

//上一个的状态更改

if(nth==index){

arr.active=true;

name=arr.value;

}

returnarr;

})

this.getNews(name);//获得新闻列表

this.setData({menu:tmp});//更新菜单

}

}

//touchDot=touchMove;//每移动一次把上一次的点作为原点(好像没啥用)

},

//触摸结束事件

touchEnd:function(e){

clearInterval(interval);//清除setInterval

time=0;

tmpFlag=true;//回复滑动事件

},

本文来源:https://www.yuntue.com/post/71161.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注