element ui 彈框拖拽 vue自定義事件
在utils文件下創(chuàng)建一個dialog.js
import Vue from 'vue'
// v-dialogDrag: 彈窗拖拽屬性
Vue.directive('dialogDrag', {
bind (el, binding, vnode, oldVnode) {
// 自定義屬性,判斷是否可拖拽
if (!binding.value) return
const dialogHeaderEl = el.querySelector('.el-dialog__header')
const dragDom = el.querySelector('.el-dialog')
dialogHeaderEl.style.cssText += ';cursor:move;'
dragDom.style.cssText += ';top:0px;'
// 獲取原有屬性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
const sty = (function () {
if (document.body.currentStyle) {
// 在ie下兼容寫法
return (dom, attr) => dom.currentStyle[attr]
} else {
return (dom, attr) => getComputedStyle(dom, false)[attr]
}
})()
dialogHeaderEl.onmousedown = (e) => {
// 鼠標(biāo)按下,計算當(dāng)前元素距離可視區(qū)的距離
const disX = e.clientX - dialogHeaderEl.offsetLeft
const disY = e.clientY - dialogHeaderEl.offsetTop
const screenWidth = document.body.clientWidth // body當(dāng)前寬度
const screenHeight = document.documentElement.clientHeight // 可見區(qū)域高度(應(yīng)為body高度铺呵,可某些環(huán)境下無法獲取)
const dragDomWidth = dragDom.offsetWidth // 對話框?qū)挾? const dragDomheight = dragDom.offsetHeight // 對話框高度
const minDragDomLeft = dragDom.offsetLeft
const maxDragDomLeft = screenWidth - dragDom.offsetLeft - dragDomWidth
const minDragDomTop = dragDom.offsetTop
const maxDragDomTop = screenHeight - dragDom.offsetTop - dragDomheight
// 獲取到的值帶px 正則匹配替換
let styL = sty(dragDom, 'left')
... // 為兼容ie
if (styL === 'auto') styL = '0px'
let styT = sty(dragDom, 'top')..
// 注意在ie中 第一次獲取到的值為組件自帶50% 移動之后賦值為px
if (styL.includes('%')) {
styL = +document.body.clientWidth * (+styL.replace(/%/g, '') / 100)
styT = +document.body.clientHeight * (+styT.replace(/%/g, '') / 100)
} else {
styL = +styL.replace(/px/g, '')
styT = +styT.replace(/px/g, '')
};
document.onmousemove = function (e) {
// 通過事件委托,計算移動的距離
let left = e.clientX - disX
let top = e.clientY - disY
// 邊界處理
if (-(left) > minDragDomLeft) {
left = -(minDragDomLeft)
} else if (left > maxDragDomLeft) {
left = maxDragDomLeft
}
if (-(top) > minDragDomTop) {
top = -(minDragDomTop)
} else if (top > maxDragDomTop) {
top = maxDragDomTop
}
// 移動當(dāng)前元素
dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`
}
document.onmouseup = function (e) {
document.onmousemove = null
document.onmouseup = null
}
return false
}
}
})
Vue.directive('dialogChange', {
bind (el, binding, vnode, oldVnode) {
// 自定義屬性井濒,判斷是否可拉伸
if (!binding.value) return
const dragDom = el.querySelector('.el-dialog')
let dragMouse
// 在彈出框的右下角添加可拉伸標(biāo)志 class='mouse'
for (let i = 0; i < dragDom.childNodes[2].childNodes.length; i++) {
if (dragDom.childNodes[2].childNodes[i].className === 'mouse') {
dragMouse = dragDom.childNodes[2].childNodes[i]
}
}
// 鼠標(biāo)拖拽
dragMouse.onmousedown = (e) => {
// content區(qū)域
const content = dragDom.parentNode.parentNode.parentNode.parentNode
const disX = e.clientX - dragDom.offsetWidth
const disY = e.clientY - dragDom.offsetHeight
document.onmousemove = function (e) {
e.preventDefault() // 移動時禁用默認(rèn)事件
// 通過事件委托灶似,計算移動的距離
let width = e.clientX - disX
let height = e.clientY - disY
if (width > content.offsetWidth && height < content.offsetHeight) {
dragDom.style.height = `${height}px`
} else if (width < content.offsetWidth && height > content.offsetHeight) {
dragDom.style.width = `${width}px`
} else if (width < content.offsetWidth && height < content.offsetHeight) {
dragDom.style.width = `${width}px`
dragDom.style.height = `${height}px`
}
}
document.onmouseup = function (e) {
document.onmousemove = null
document.onmouseup = null
}
return false
}
}
})
在main.js內(nèi)引入 你創(chuàng)建的dialog.js,
import "./utils/dialog"
最后在組件內(nèi)引用自定義方法
<el-dialog
:title="text"
:close-on-press-escape="false"
:close-on-click-modal="false"
:destroy-on-close="true"
v-dialogDrag:{dialogDrag}="dialog.dialogDrag"
v-dialogChange:{dialogChange}="dialog.dialogChange"
ref="dialog__wrapper"
:visible.sync="FormVisible"
width="60%"
></el-dialog>
在data 內(nèi) return 出一個對象 這個名字可以隨便起
dialog: {// dialog顯示隱藏
dialogDrag: true, // 可拖拽
dialogChange: true, // 可拉伸
},