您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“elementUI中el-dialog如何實現拖拽功能”,內容詳細,步驟清晰,細節處理妥當,希望這篇“elementUI中el-dialog如何實現拖拽功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
element UI中dialog組件經常會用到,如果能讓其任意拖拽放到不同的位置就更好了,實現方法如下:
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) => { // 鼠標按下,計算當前元素距離可視區的距離 const disX = e.clientX - dialogHeaderEl.offsetLeft const disY = e.clientY - dialogHeaderEl.offsetTop // 獲取到的值帶px 正則匹配替換 let styL, styT // 注意在ie中 第一次獲取到的值為組件自帶50% 移動之后賦值為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) { // 通過事件委托,計算移動的距離 const l = e.clientX - disX const t = e.clientY - disY // 移動當前元素 dragDom.style.left = `${l + styL}px` dragDom.style.top = `${t + styT}px` // 將此時的位置傳出去 // 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>
有幾個點須要注意一下瀏覽器
每一個彈窗都要有惟一dom可操做 指令能夠作到
拖拽時要添加可拖拽區塊 header
因為element-ui dialog組件在設計時寬度用了百分比, 這里不一樣瀏覽器有兼容性問題
實現拖拽寬高時 獲取邊緣問題 div定位 設置模擬邊緣
讀到這里,這篇“elementUI中el-dialog如何實現拖拽功能”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。