Vue 弹框拖动功能实现 - 鼠标粘连问题解决方案
在 moveDown 函数中,添加以下代码可以解决鼠标粘在弹框上的问题:
document.onselectstart = new Function('return false'); document.ondragstart = new Function('return false');
通过阻止默认行为,可以避免鼠标粘连在弹框上。
export default {
bind(el, binding, vnode, oldVnode) {
// 弹框可拉伸最小宽高
const minWidth = 400;
const minHeight = 300;
// 初始非全屏
let isFullScreen = true;
// 当前宽高
let nowWidth = 0;
let nowHight = 0;
// 当前顶部高度
let nowMarginTop = 0;
// 获取弹框头部(这部分可双击全屏)
const dialogHeaderEl = el.querySelector('.el-dialog__header');
// 弹窗
const dragDom = el.querySelector('.el-dialog');
// 给弹窗加上overflow auto;不然缩小时框内的标签可能超出dialog;
dragDom.style.overflow = 'auto';
// 清除选择头部文字效果
// dialogHeaderEl.onselectstart = new Function('return false');
// 头部加上可拖动cursor
dialogHeaderEl.style.cursor = 'move';
// 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null);
const moveDown = (e) => {
// 鼠标按下,计算当前元素距离可视区的距离
const disX = e.clientX - dialogHeaderEl.offsetLeft;
const disY = e.clientY - dialogHeaderEl.offsetTop;
const maxX = document.body.clientWidth - dragDom.offsetWidth; // 最大横向移动距离
const maxY = document.body.clientHeight - dragDom.offsetHeight; // 最大纵向移动距离
document.onmousemove = function (e) {
let left = e.clientX - disX;
let top = e.clientY - disY;
left = left < 0 ? 0 : left;
left = left > maxX ? maxX : left;
top = top < 0 ? 0 : top;
top = top > maxY ? maxY : top;
dragDom.style.left = `${left}px`;
dragDom.style.top = `${top}px`;
};
// 获取到的值带px 正则匹配替换
let styL;
let 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;
};
// 阻止默认行为,解决鼠标粘连问题
document.onselectstart = new Function('return false');
document.ondragstart = new Function('return false');
};
dialogHeaderEl.onmousedown = moveDown;
// 双击头部全屏效果
dialogHeaderEl.ondblclick = (e) => {
if (isFullScreen) {
nowHight = dragDom.clientHeight;
nowWidth = dragDom.clientWidth;
nowMarginTop = dragDom.style.marginTop;
dragDom.style.height = '768px';
dragDom.style.width = '1024px';
dragDom.style.marginTop = '15vh';
isFullScreen = false;
dialogHeaderEl.style.cursor = 'initial';
// dialogHeaderEl.onmousedown = null;
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;
};
} else {
dragDom.style.removeProperty('width');
dragDom.style.removeProperty('height');
dragDom.style.removeProperty('margin-top');
isFullScreen = true;
dialogHeaderEl.style.cursor = 'move';
dialogHeaderEl.onmousedown = moveDown;
}
};
},
};
原文地址: https://www.cveoy.top/t/topic/oKSm 著作权归作者所有。请勿转载和采集!