溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

elementUI中el-dialog如何實(shí)現(xiàn)拖拽功能

發(fā)布時(shí)間:2022-12-29 16:37:50 來源:億速云 閱讀:260 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“elementUI中el-dialog如何實(shí)現(xiàn)拖拽功能”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“elementUI中el-dialog如何實(shí)現(xiàn)拖拽功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。

element UI中dialog組件經(jīng)常會(huì)用到,如果能讓其任意拖拽放到不同的位置就更好了,實(shí)現(xiàn)方法如下:

dialogDraggable.js代碼:
import Vue from 'vue'  
// v-dialogDrag: 彈窗拖拽 
Vue.directive('dialogDrag', { 
  bind(el, binding, vnode, oldVnode) { 
    const dialogHeaderEl = el.querySelector('.el-dialog__header') 
    const dragDom = el.querySelector('.el-dialog') 
    dialogHeaderEl.style.cursor = 'move' 
 
    // 獲取原有屬性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null); 
    const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null) 
 
    dialogHeaderEl.onmousedown = (e) => { 
      // 鼠標(biāo)按下,計(jì)算當(dāng)前元素距離可視區(qū)的距離 
      const disX = e.clientX - dialogHeaderEl.offsetLeft 
      const disY = e.clientY - dialogHeaderEl.offsetTop 
 
      // 獲取到的值帶px 正則匹配替換 
      let styL, styT 
 
      // 注意在ie中 第一次獲取到的值為組件自帶50% 移動(dòng)之后賦值為px 
      if (sty.left.includes('%')) { 
        styL = +document.body.clientWidth * (+sty.left.replace(/%/g, '') / 100) 
        styT = +document.body.clientHeight * (+sty.top.replace(/%/g, '') / 100) 
      } else { 
        styL = +sty.left.replace(/px/g, '') 
        styT = +sty.top.replace(/px/g, '') 
      } 
 
      document.onmousemove = function(e) { 
        // 通過事件委托,計(jì)算移動(dòng)的距離 
        const l = e.clientX - disX 
        const t = e.clientY - disY 
 
        // 移動(dòng)當(dāng)前元素 
        dragDom.style.left = `${l + styL}px` 
        dragDom.style.top = `${t + styT}px` 
 
        // 將此時(shí)的位置傳出去 
        // binding.value({x:e.pageX,y:e.pageY}) 
      } 
 
      document.onmouseup = function(e) { 
        document.onmousemove = null 
        document.onmouseup = null 
      } 
    } 
  } 
})

main.js 引用:

import ‘@/assets/dialogDraggable.js'

模塊中引用

< el-dialog v-dialogDrag></ el-dialog>

有幾個(gè)點(diǎn)須要注意一下瀏覽器

  • 每一個(gè)彈窗都要有惟一dom可操做 指令能夠作到

  • 拖拽時(shí)要添加可拖拽區(qū)塊 header

  • 因?yàn)閑lement-ui dialog組件在設(shè)計(jì)時(shí)寬度用了百分比, 這里不一樣瀏覽器有兼容性問題

  • 實(shí)現(xiàn)拖拽寬高時(shí) 獲取邊緣問題 div定位 設(shè)置模擬邊緣

讀到這里,這篇“elementUI中el-dialog如何實(shí)現(xiàn)拖拽功能”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI