需求需要弹框拖拽,在网上找了几个,发现没有再次打开重定位功能,自己写了个简单的,求更省资源的方法
<el-dialog v-dialogDrag> </el-dialog>
// 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';
// console.log(dragDom.parentNode)
if(!!MutationObserver){
const targetNode = dragDom.parentNode;//content监听的元素id
//options:监听的属性
const options = { attributes: true};
//回调事件
function callback(mutationsList, observer) {
mutationsList.forEach((v)=>{
if(v.attributeName == "style" && v.target.style.display == "none"){
console.log(v)
dragDom.style.left = `0px`;
dragDom.style.top = `0px`;
}
})
}
// 监听style变化
let mutationObserver = new MutationObserver(callback);
mutationObserver.observe(targetNode, options);
}
// 获取原有属性 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;
};
}
}
})
通过MutationObserver来实现:
MutationObserver可以用来监视 DOM 变动。DOM 的任何变动,比如节点的增减、属性的变动、文本内容的变动,这个 API 都可以得到通知,
参数mutationsList中包含以下属性:
- type:观察的变动类型(attribute、characterData或者childList)。
- target:发生变动的DOM节点。
- addedNodes:新增的DOM节点。
- removedNodes:删除的DOM节点。
- previousSibling:前一个同级节点,如果没有则返回null。
- nextSibling:下一个同级节点,如果没有则返回null。
- attributeName:发生变动的属性。如果设置了attributeFilter,则只返回预先指定的属性。
- oldValue:变动前的值。这个属性只对attribute和characterData变动有效,如果发生childList变动,则返回null。
变动类型有以下几种:
- childList:子节点的变动(指新增,删除或者更改)。
- attributes:属性的变动。
- characterData:节点内容或节点文本的变动。
- subtree:布尔值,表示是否将该观察器应用于该节点的所有后代节点。
- attributeOldValue:布尔值,表示观察attributes变动时,是否需要记录变动前的属性值。
- characterDataOldValue:布尔值,表示观察characterData变动时,是否需要记录变动前的值。
- attributeFilter:数组,表示需要观察的特定属性(比如['class','src'])。
想要观察哪一种变动类型,就在option对象中指定它的值为true。需要注意的是,必须同时指定childList、attributes和characterData中的一种或多种,若未均指定将报错。