微信小程序实现滑动操作代码
网络编程 2021-07-04 15:02www.168986.cn编程入门
这篇文章主要介绍了微信小程序实现滑动操作代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
前言
本文使用动画组件wx.createAnimation来实现滑动操作
1. 左滑动显示操作项区域;
2. 点击操作项触发相应方法;
3. 右滑动和点击行收起操作项;
4. 点击“删除”并确定则删除该条数据。
最终效果如下
实现过程
1. 文件index.wxml和index.wxss代码如下,这一块比较简单,可自行查看,不做过多分析;
Tips“详情”、“取号”和“删除”点击触发使用catchtap,阻止冒泡事件向上冒泡;
<view class="wrapper"> <view class="container"> <view class="list"> <view class="line" bindtouchstart="touchstartX" bindtap="resetX" bindtouchmove="touchmoveX" bindtouchend="touchendX" animation="{{currentIndex === index ?animation : ''}}" data-index="{{index}}" wx:for="{{recordList}}" wx:key="id"> <image class="icon-title" src="../../images/start_icon.png"></image> <view class="mes"> <view class="title">{{item.title}}</view> <view class="date">预约时间{{item.date}}</view> <view class="status">状态<text>{{item.status}}</text></view> </view> <view class="operation"> <view class="detail" catchtap="openDetail">详情</view> <view class="number" catchtap="getNumber">取号</view> <view class="delete" catchtap="deleteItem">删除</view> </view> </view> </view> </view> </view>
.container .line { display: flex; padding: 20rpx 30rpx; border-bottom: 2rpx solid #ebebeb; position: relative; cursor: pointer; } .container .line .icon-title { margin-: 28rpx; width: 30rpx; height: 30rpx; } .container .line .mes { flex: 1; margin-left: 10rpx; } .container .line .mes .date, .container .line .mes .status { color: #9d9d9d; font-size: 24rpx; margin-: 4rpx; } .status text { color: #fba500; } .operation { position: absolute; : 0; right: -300rpx; height: 152rpx; text-align: center; color: #fff; line-height: 152rpx; display: flex; } .operation view { width: 100rpx; } .operation .detail { background-color: #018efb; } .operation .number { background-color: #fba500; } .operation .delete { background-color: #cfcfcf; }
2. 文件index.js存放所有功能的逻辑代码,狼蚁网站SEO优化主要分析几个重点方法
1)方法touchmoveX用于手指触摸后移动时获取移动距离,并根据移动距离动画显示操作项相应区域,使移动有即时效果;
2)方法touchendX用于手指触摸动作结束时,如果移动距离达到100,则动画显示全部操作项区域;如果移动距离未达到100,则收起操作项区域;
3)方法deleteItem用于删除该条数据。
let movedistance = 0; Page({ data: { currentIndex: 0, // 列表操作项的index recordList: [{ // 列表数据 id: 1, title: '业务办理01', date: '2020-04-21 10:30-12:00', status: '未取号' }, { id: 2, title: '业务办理02', date: '2020-04-21 10:30-12:00', status: '未取号' }, { id: 3, title: '业务办理03', date: '2020-04-21 10:30-12:00', status: '取号' }] }, // 打开详情页 openDetail() { console.log(this.data.currentIndex, '点击详情'); }, // 取号 getNumber() { console.log(this.data.currentIndex, '点击取号'); }, // 删除数据 deleteItem() { let that = this; let recordList = this.data.recordList; wx.showModal({ title: '提示', content: '是否删除该条数据?', suess(res) { if (res.confirm) { that.slideAnimation(0, 500); recordList.splice(that.data.currentIndex, 1); that.setData({ recordList: recordList }); } else if (res.cancel) { console.log('用户点击取消') } } }); }, // 手指触摸动作开始 touchstartX(e) { this.setData({ currentIndex: e.currentTarget.dataset.index }); // 获取触摸X坐标 this.recordX = e.touches[0].clientX; }, // 点击操作 resetX() { this.slideAnimation(0, 500); }, // 手指触摸后移动 touchmoveX(e) { let currentX = e.touches[0].clientX; movedistance = currentX - this.recordX; // 获取移动距离 this.slideAnimation(movedistance, 500); }, // 手指触摸动作结束 touchendX() { let recordX; if (movedistance <= -100) { // 移动达到距离就动画显示全部操作项 recordX = -300; } else if (movedistance >= -100) { // 移动未达到距离即还原 recordX = 0; } this.slideAnimation(recordX, 500); }, // 滑动动画 slideAnimation(recordX, time) { let animation = wx.createAnimation({ duration: time, timingFunction: 'ease' }); animation.translate(recordX + 'rpx', 0).step() this.setData({ animation: animation.export() }) }, onLoad: function(options) { wx.setNavigationBarTitle({ title: '银行业务', }); movedistance = 0; // 解决切换到其它页面再返回该页面动画失效的问题 } })
到此这篇关于微信小程序实现滑动操作代码的文章就介绍到这了,更多相关微信小程序滑动内容请搜索狼蚁SEO以前的文章或继续浏览狼蚁网站SEO优化的相关文章希望大家以后多多支持狼蚁SEO!
上一篇:详解Vue3中对VDOM的改进
下一篇:微信小程序图片右边加两行文字的代码
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程