首页 > 课堂 > 小程序 > 正文

微信小程序左滑删除效果实现教程

2020-03-21 16:29:53
字体:
来源:转载
供稿:网友

没有高度封装,有人愿意封装优化下的可以弄下

效果图

微信小程序,小程序开发,左滑删除

1、wxml touch-item元素绑定了bindtouchstart、bindtouchmove事件

<view class="container">  <view class="touch-item {{item.isTouchMove ? 'touch-move-active' : ''}}" data-index="{{index}}" bindtouchstart="touchstart" bindtouchmove="touchmove" wx:for="{{items}}" wx:key="">    <view class="content">{{item.content}}</view>    <view class="del" catchtap="del" data-index="{{index}}">删除</view>  </view></view>

2、wxss flex布局、css3动画

.touch-item {  font-size: 14px;  display: flex;  justify-content: space-between;  border-bottom:1px solid #ccc;  width: 100%;  overflow: hidden}.content {  width: 100%;

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表