首頁  >  文章  >  web前端  >  vue模組拖曳效果的實作程式碼

vue模組拖曳效果的實作程式碼

不言
不言轉載
2019-03-08 16:41:272149瀏覽

這篇文章帶給大家的內容是關於vue模組拖曳效果的實現程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

正巧在之前面試中遇到問實現拖曳效果

當時面試的時候簡單回答了實現的方式與邏輯。

現在閒來無事,把這個東西實現了一下。

原理很簡單,寫的很方便。

資料驅動,建立一個數組,數組初始長度為1

拖曳觸發時,添加一個對像到數組中,拖動的是下標為0的對象,新建的還在原來位置放著,等待下次拖曳。

話不多說,上程式碼

<template>
    <div>
      <div @mousedown="move($event,index)" v-for="(x,index) in i">
        <span v-if="index+1 !== i.length">{{index+1}}</span>
        <input v-model="x.input">
      </div>
      {{i}}
    </div>
</template>

<script>
    export default {
        name: "index",
      data(){
          return{
            positionX:0,
            positionY:0,
            i:[
              {input:''}
            ]
          }
      },
      methods:{
          move(e,x){
            let odiv = e.target;        //获取目标元素
            //算出鼠标相对元素的位置
            let disX = e.clientX - odiv.offsetLeft;
            let disY = e.clientY - odiv.offsetTop;
            let flag = true;
            document.onmousemove = (e)=>{       //鼠标按下并移动的事件
              if(flag && x === this.i.length-1){
                flag = false;
                this.i.push({input:''})
              }
              //用鼠标的位置减去鼠标相对元素的位置,得到元素的位置
              let left = e.clientX - disX;
              let top = e.clientY - disY;
              //绑定元素位置到positionX和positionY上面
              this.positionX = top;
              this.positionY = left;
              //移动当前元素
              odiv.style.left = left + 'px';
              odiv.style.top = top + 'px';
            };
            document.onmouseup = (e) => {
              document.onmousemove = null;
              document.onmouseup = null;
            };
          }
      }
    }
</script>

<style scoped>
  .view{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f8f8;
    .x{
      width: 250px;
      height: 50px;
      top: 50px;
      left: 10px;
      position: absolute;
      background: red;
      color: yellow;
    }
  }
</style>

一個簡單的demo,後續用的話可以再豐富,例如以拖曳長度來觸發事件。

input可以換成子元件。這裡提供分享一個底層的實作方式

input可以換成子元件。這裡提供分享一個底層的實作方式

以上是vue模組拖曳效果的實作程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除