基于Vue实现拖拽效果之数组拖拽排序

在这里插入图片描述

拖拽的核心是:dragstart, dragenter, dragend 的方法

动画采用 transition-group 的方法

<!DOCTYPE html>
<html lang="en">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, width=device-width" />
    <title>test</title>
    <style type="text/css">
        .flip-list-move {
            transition: transform 0.3s ease-in;
        }
        
        .box {
            display: block;
            display: flex;
            width: 500px;
            flex-wrap: wrap;
        }
        
        .items {
            width: 100px;
            height: 50px;
            margin: 10px;
            line-height: 50px;
            text-align: center;
            border: 1px solid red;
            cursor: move;
        }
        
        .items.active {
            background: rgba(0, 0, 0, 0.4);
        }
    </style>
</head>

<body>
    <div id="content">
        <transition-group name="flip-list" class="box">
            <div v-for="item in items" :key="item" draggable="true" class="items" :class="{active: oldVal == item && isActive==item}" @dragstart="dragstart(item)" @dragenter="dragenter(item)" @dragend="dragend(item)">
                {{item}}
            </div>
        </transition-group>
    </div>
    <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.9/vue.min.js"></script>
    <script>
        var vue = new Vue({
            el: '#content',
            data: {
                items: [1, 2, 3, 4, 5, 6, 7, 8, 9],
                isActive: 0,
                oldVal: 0,
                newOld: 0,
            },
            methods: {
                dragstart(val) {
                    this.oldVal = val;
                    this.isActive = val;
                },
                dragend(val) {
                    if (this.oldVal != this.newOld) {
                        let oldIndex = this.items.indexOf(this.oldVal);
                        let newIndex = this.items.indexOf(this.newOld);
                        let newItems = [...this.items];
                        // 删除老的节点
                        newItems.splice(oldIndex, 1);
                        // 增加新的节点
                        newItems.splice(newIndex, 0, this.oldVal);
                        // items结构发生变化触发transition-group的动画
                        this.items = [...newItems];
                        this.isActive = -1;
                    }
                },
                // 记录移动过程中信息
                dragenter(val) {
                    this.newOld = val;
                },
            },
        });
    </script>
</body>

</html>```

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值