微信小程序左右滑动删除事件详解

微信小程序左右滑动删除事件详解

 更新时间:2022年06月30日 15:47:25   作者:呆鸟慢飞  
 
这篇文章主要为大家详细介绍了微信小程序左右滑动删除事件,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了微信小程序左右滑动删除事件,供大家参考,具体内容如下

效果图

上代码

1
2
3
4
5
6
7
8
9
10
<scroll-view scroll-y enable-back-to-top style="height:{{ scrollHeight }}px" >
    <view>
        <block wx:for="{{ list }}" wx:for-item="item" wx:for-index="index" wx:key="index" >
            <view class="list {{ item.isTouchMove ? 'touch-move-active' : '' }}"    bindtouchstart="touchStart" bindtouchmove="touchMove" data-index="{{ index }}" >
                <view class="txt">{{ item.id }} -- {{ item.title }}</view>
                <view class="del" bindtap="delList" data-index="{{ index }}" > 删除 </view>
            </view>
        </block>
    </view>
</scroll-view>

自媒体培训

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* 列表 */
.list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100rpx;
    line-height: 100rpx;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #cccccc;
}
/* 列表内容 */
.list .txt {
    flex-grow: 1;
    width: 100%;
    margin-left: -150rpx;
    background-color: #fff;
}
/* 删除按钮 */
.list .del {
    flex-grow: 0;
    width: 150rpx;
    color: #fff;
    background-color: #fe3e2f;
}
 
.list .txt, .list .del {
    transform: translateX(150rpx);
    transition: all 0.4s;
}
.touch-move-active .txt,.touch-move-active .del {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Page({
    /**
     * 页面的初始数据
     */
    data: {
        list: [
            { id: "0001", title: "商品1" },
            { id: "0002", title: "商品2" },
            // ..........
        ],
        scrollHeight: 0,  // scroll-view高度
        startX: 0,        // 开始X坐标
        startY: 0,        // 开始Y坐标
 
    },
 
    // 手指触摸动作开始
    touchStart: function(e){
        let that = this;
        //开始触摸时 重置所有删除
        that.data.list.forEach(function (v, i) {
            if (v.isTouchMove) v.isTouchMove = false; // 只操作为true的
        })
        // 记录手指触摸开始坐标
        that.setData({
            startX: e.changedTouches[0].clientX,  // 开始X坐标
            startY: e.changedTouches[0].clientY,  // 开始Y坐标
            list: that.data.list
        })
    },
 
    // 手指触摸后移动
    touchMove: function(e){
        let that = this,
            index = e.currentTarget.dataset.index,    // 当前下标
            startX = that.data.startX,                // 开始X坐标
            startY = that.data.startY,                // 开始Y坐标
            touchMoveX = e.changedTouches[0].clientX, // 滑动变化坐标
            touchMoveY = e.changedTouches[0].clientY, // 滑动变化坐标
            // 获取滑动角度
            angle = that.angle({ X: startX, Y: startY }, { X: touchMoveX, Y: touchMoveY });
     // 判断滑动角度
        that.data.list.forEach(function (v, i) {
            v.isTouchMove = false
            // 滑动超过30度角 return
            if (Math.abs(angle) > 30) return;
            if (i == index) {
                // 右滑
                if (touchMoveX > startX) 
                    v.isTouchMove = false
                // 左滑
                else 
                    v.isTouchMove = true
            }
      })
      // 更新数据
      that.setData({
          list: that.data.list
      })
    },
 
    // 计算滑动角度
    angle: function (start, end) {
        let that = this,
            _X = end.X - start.X,
            _Y = end.Y - start.Y;
        // 返回角度 /Math.atan()返回数字的反正切值
        return 360 * Math.atan(_Y / _X) / (2 * Math.PI);
    },
 
    // 删除
    delList: function(e){
        let that = this,
            index = e.currentTarget.dataset.index;  // 当前下标
     // 切割当前下标元素,更新数据
        that.data.list.splice(index, 1); 
        that.setData({
            list: that.data.list
        })
    },
 
    /**
     * 生命周期函数--监听页面加载
     */
    onLoad: function (options) {
        let that = this;
        // 动态获取屏幕高度
        that.setData({
            scrollHeight: wx.getSystemInfoSync().screenHeight
        })
    },
})

这是左滑动删除,如需要右滑动删除在js页面调整一下就好。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

posted on   与非朋仔  阅读(270)  评论(0编辑  收藏  举报

(评论功能已被禁用)
相关博文:
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示