美文网首页
【转载】vue实现拖拽交换位置

【转载】vue实现拖拽交换位置

作者: 优秀的收藏转载分享 | 来源:发表于2022-08-03 15:37 被阅读0次

原文:vue实现拖拽交换位置

效果图:

image.png
<template>
  <div class="root">
    <transition-group tag="div" class="container">
      <div
        class="item"
        :class="'item' + i"
        v-for="(item, i) in items"
        :key="item.key"
        :style="{ 'background-color': item.color, border: '1px solid' }"
        draggable="true"
        @dragstart="handleDragStart($event, item)"
        @dragover.prevent="handleDragOver($event, item)"
        @dragenter="handleDragEnter($event, item)"
        @dragend="handleDragEnd($event, item)"
      >
        <div>{{ item }}</div>
      </div>
    </transition-group>
  </div>
</template>
 
<script>
export default {
  name: "Toolbar",
  data() {
    return {
      items: [
        { key: 1, color: "#3883a0" },
        { key: 2, color: "#4883a0" },
        { key: 3, color: "#5883a0" },
        { key: 4, color: "#6883a0" },
        { key: 5, color: "#7883a0" },
        { key: 6, color: "#8883a0" },
        { key: 7, color: "#9883a0" },
      ],
      ending: null,
      dragging: null,
    };
  },
  methods: {
    handleDragStart(e, item) {
      this.dragging = item;
    },
    handleDragEnd(e, item) {
      if (this.ending.key === this.dragging.key) {
        return;
      }
      let newItems = [...this.items];
      const src = newItems.indexOf(this.dragging);
      const dst = newItems.indexOf(this.ending);
      newItems.splice(src, 1, ...newItems.splice(dst, 1, newItems[src]));
      console.log(newItems);
 
      this.items = newItems;
      this.$nextTick(() => {
        this.dragging = null;
        this.ending = null;
      });
    },
    handleDragOver(e) {
      // 首先把div变成可以放置的元素,即重写dragenter/dragover
      // 在dragenter中针对放置目标来设置
      e.dataTransfer.dropEffect = "move";
    },
    handleDragEnter(e, item) {
      // 为需要移动的元素设置dragstart事件
      e.dataTransfer.effectAllowed = "move";
      this.ending = item;
    },
  },
};
</script>
 
<style lang="less" scoped>
.container {
  display: flex;
  flex-wrap: wrap;
}
.item {
  width: 200px;
  height: 200px;
  margin: 10px;
  color: #fff;
  transition: all linear 0.3s;
}
.item0 {
  width: 400px;
}
</style>

相关文章

  • 【转载】vue实现拖拽交换位置

    原文:vue实现拖拽交换位置[https://blog.csdn.net/ziwoods/article/deta...

  • HTML5拖拽drag

    通过拖拽实现页面元素的位置改变 实现拖拽效果 源元素 - 要拖拽的文件 目标元素 - 要拖拽到哪里去 目前实现拖拽...

  • Swift拖拽交换位置

    项目里需要实现“田”字格视图拖拽交换四个格锅底数据,今天实现了发现还是蛮容易的,但是自己确实开始不知道如何下手。记...

  • vue实现表格列位置的拖拽

    首先我们看下最终的交互效果: 此功能是针对vue项目的表格拖拽,以自定义指令的形式来完成交互的. 主要原理的dom...

  • vue实现div拖拽互换位置

    template模板 script: 最后 为了帮助大家让学习变得轻松、高效,给大家免费分享一大批资料,帮助大家在...

  • vue 弹窗可拖拽

    vue 弹窗可拖拽 通过自定义指令实现

  • flutter-两个列表之间元素拖拽

    首先需要完成一个GridView内的元素拖拽交换位置; 然后解决两个GridView之间拖拽的数据问题.(List...

  • 【sortablejs】拖拽排序

    Vue + element ui table 实现拖拽 源代码 地址:https://registry.npmjs...

  • Vue.Draggable学习总结

    Draggable为基于Sortable.js的vue组件,用以实现拖拽功能。 特性 支持触摸设备支持拖拽和选择文...

  • NGUI背包系统

    NGUI背包系统实现装备的拾取、拖拽,交换以及数量的叠加 步骤一:实现游戏装备的拖拽 首先导入NGUI插件,导入后...

网友评论

      本文标题:【转载】vue实现拖拽交换位置

      本文链接:https://www.haomeiwen.com/subject/qszswrtx.html