失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > 详解微信小程序左右滑动切换页面

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

时间:2020-08-05 10:24:06

相关推荐

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

微信小程序|小程序开发

小程序,切换,滑动

微信小程序-小程序开发

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

vc 报表 源码,ubuntu 对硬件要求,tomcat报别的项目出错,期货爬虫资源,请求路径是php,免费seo软件seo博客lzw

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

库存管理 php 源码,ubuntu是什么品牌,去哪儿反爬虫,冒泡查找php,SEO料网lzw

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

java档案管理系统源码,ubuntu打开界面服务,tomcat编码utf8,rust 爬虫框架,php首页源码,搜索引擎优化seo的步骤lzw

touchstart在触摸开始时触发事件;

touchend在触摸结束时触发事件;

touchmove触摸的过程中不断激发这个事件;

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

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

<view bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd"> // 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 <= -40 && time < 10){ if(tmpFlag && nth < nthMax){ //每次移动中且滑动时不超过最大值 只执行一次var tmp = 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; } return arr;})this.getNews(name); // 获取新闻列表this.setData({menu : tmp}); // 更新菜单 } } // 向右滑动 if(touchMove - touchDot >= 40 && time < 10){ if(tmpFlag && nth > 0){nth = --nth < 0 ? 0 : nth;var tmp = this.data.menu.map(function (arr, index) { tmpFlag = false; arr.active = false; // 上一个的状态更改 if(nth == index){arr.active = true;name = arr.value; } return arr;})this.getNews(name); // 获取新闻列表this.setData({menu : tmp}); // 更新菜单 } } // touchDot = touchMove; //每移动一次把上一次的点作为原点(好像没啥用)}, // 触摸结束事件touchEnd:function(e){ clearInterval(interval); // 清除setInterval time = 0; tmpFlag = true; // 回复滑动事件},

如果觉得《详解微信小程序左右滑动切换页面》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。