由于移动端的屏幕尺寸限制,很多App都的列表项使用了的滑动显示删除按钮,然后点击删除功能。网页端可以采用插件方式很容易实现。
这里采用Vue+Weui+vue2-touch-events插件实现。
- Vue是一套用于构建用户界面的渐进式框架。使用起来很容易上手。https://vuejs.bootcss.com/guide/
- Weui是一套同微信原生视觉体验一致的基础样式库,由微信官方设计团队为微信内网页和微信小程序量身设计,简单易用。https://weui.io/
- vue2-touch-events是基于Vue2的移动端浏览器Touch事件插件,https://www.npmjs.com/package/vue2-touch-events
我们都知道滑动事件由按下、移动、松开3个步骤组成。要在按下的时候记录手指按下的屏幕位置,并判断是否有已经打开的列表,有的话先关闭;在滑动的过程中,根据当前触摸的坐标计算滑动距离,移动相应的列表,当滑动记录大于完全打开的记录的一半时自动打开列表;当松开时滑动距离小于完全打开的记录的一半时吧列表关闭。效果如下:
很简单,直接贴代码,
HTML代码:
<div > <div > <div > <div v-for="record in records" > <div > <div ref="ls" > <div v-touch:start="listSwipeStart()" v-touch:moving="listSwipeMoving()" v-touch:end="listSwipeEnd()"> <div > <i ></i> </div> <div > {{record}} </div> <div > </div> </div> </div> <div > <a href="javascript:">修改</a> <a href="javascript:">删除</a> </div> </div> </div> <div v-if="records == null || records.length==0" > <div > <div > <p>无数据!</p> </div> </div> </div> </div> </div></div>
主内容区域是一个weui面板,面板的主体方式weui-cell组件用于显示列表。
由于要显示修改删除按钮,所以嵌套一层weui-cell:外层的weui-cell的bd里嵌套一个weui-cell,里面的weui-cell是列表内容,外层weui-cell的ft里放修改删除按钮,正常时内层的weui-cell遮掉外层的ft,当滑动时移动内层的weui-cell外层的按钮就可显示出来了。
给内层的weui-cell绑定vue2-touch-events插件的3个事件,v-touch:start,v-touch:moving,v-touch:end。
Js代码:
<script> const Counter = { el: ".page", data() { return { swipe: { startX: 0, startY:0, maxDistance: 136 } } }, mounted: function () { for (var i = 1; i <= 20; i++) { this.records.push("n" + i); } }, methods: { listSwipeStart() { that = this; return function (direction, event) { if (direction.changedTouches != undefined && direction.changedTouches.length === 1) { //清楚已打开的列表 for (i = 0, len = that.$refs.ls.length; i < len; i++) { if (that.$refs.ls[i].style != "") that.$refs.ls[i].style = ""; } //记录起始位置 that.swipe.startX = direction.changedTouches[0].pageX; that.swipe.startY = direction.changedTouches[0].pageY; } }; }, listSwipeMoving() { that = this; return function (direction, event) { if (direction.changedTouches != undefined && direction.changedTouches.length === 1) { var distanceX = direction.changedTouches[0].pageX - that.swipe.startX; var distanceY = direction.changedTouches[0].pageY - that.swipe.startY; //左滑 if (distanceX < 0 && Math.abs(distanceX) > Math.abs(distanceY)) { if (Math.abs(distanceX) < (that.swipe.maxDistance / 2)) direction.path[direction.path.length - 14].style = "transform: translateX(" + distanceX + "px)"; else direction.path[direction.path.length - 14].style = "transform: translateX(" + -that.swipe.maxDistance + "px)"; } } }; }, listSwipeEnd() { that = this; return function (direction, event) { if (direction.changedTouches != undefined && direction.changedTouches.length === 1) { var distanceX = direction.changedTouches[0].pageX - that.swipe.startX; var distanceY = direction.changedTouches[0].pageY - that.swipe.startY; //左滑 if (distanceX < 0 && Math.abs(distanceX) > Math.abs(distanceY)) { if (Math.abs(distanceX) < (that.swipe.maxDistance / 2)) direction.path[direction.path.length - 14].style = ""; else direction.path[direction.path.length - 14].style = "transform: translateX(" + -that.swipe.maxDistance + "px)"; } } }; }, } }; var page = new Vue(Counter); </script>
原文转载:http://www.shaoqun.com/a/696736.html
myyearbook:https://www.ikjzd.com/w/726
epa认证:https://www.ikjzd.com/w/1769
由于移动端的屏幕尺寸限制,很多App都的列表项使用了的滑动显示删除按钮,然后点击删除功能。网页端可以采用插件方式很容易实现。这里采用Vue+Weui+vue2-touch-events插件实现。Vue是一套用于构建用户界面的渐进式框架。使用起来很容易上手。https://vuejs.bootcss.com/guide/Weui是一套同微信原生视觉体验一致的基础样式库,由微信官方设计团队为微信内网页
环球b2b:https://www.ikjzd.com/w/1762
易趣:https://www.ikjzd.com/w/210
递四方:https://www.ikjzd.com/w/1066
希塔电商:https://www.ikjzd.com/w/1545
夫妻感情破裂能复合吗 离婚后复合的技巧有哪些:http://lady.shaoqun.com/m/a/268833.html
我怀孕了 男友说生不生跟他没关系:http://www.30bags.com/a/249344.html
No comments:
Post a Comment