gpt4 book ai didi

javascript - 如何防止文本选择阻碍 onMouseMove 事件?

转载 作者:太空宇宙 更新时间:2023-11-04 08:37:19 26 4
gpt4 key购买 nike

我正在实现“调整大小 handle ”来更改左侧导航面板的宽度。这是一个div收到onMouseDown()事件,计算必要的宽度并将它们应用于后续调用中的正确元素 onMouseMove() .但我遇到了一些问题。

1) article导航面板和句柄右侧的元素未激活 onMouseUp()如果我在那里释放鼠标。这是因为 onMouseDown()在其他元素中被激活?

2) 如果我向右快速移动鼠标,我无法阻止 article 中的文本从被选中,甚至调用像preventDefault()这样的方法和 stopPropagation() .

3) 即使 article 中没有文本,只有当我非常缓慢地移动鼠标时,调整大小才有效。如果鼠标在 article 上快速移动元素,调整大小停止,除非我释放鼠标按钮 - 在这种情况下,调整大小会顺利进行(表明它是停止调整大小的文本选择,即使根本没有文本)。但如果我松开鼠标按钮,调整大小应该停止(参见第 1 点)。

我见过一些使用 CSS 的解决方案 user-select: none , 但这会阻止在 article 中选择任何文本,这显然是矫枉过正。

那么,当我将鼠标移到文档中的任何元素上时,如何在不选择任何文本的情况下平滑地调整大小? (当然是在按下右边的按钮 div 之后。)

这是我的 HTML:

<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>CSS Template</title>
</head>
<body>
<header>Header</header>
<main>
<nav id='nav'>
<div class='navcont' onmousemove='handMm(event)' onmouseup='handMu(event)'>
<p>nav 1</p>
<p>nav 2</p>
</div>
<div class='handle' onmousedown='handMd(event)' onmousemove='handMm(event)' onmouseup='handMu(event)'>
</div>
</nav>
<article id='article' onmousemove='handMm(event)' onmouseup='handMu(event)'>
</article>
</main>
<footer>Footer</footer>
</body>
</html>

那是我的 CSS:

html, body {
height:100%;
margin:0;
}
body {
display:flex;
flex-direction:column;
}
header {
text-align:center;
}
main {
flex:1;
display:flex;
min-height:0;
}
article {
background:#CCC;
width:auto;
overflow:auto;
padding:10px;
flex-grow:1;
}
nav {
width:300px;
height:auto;
overflow: hidden;
display:flex;
}
.navcont {
background:#8C8;
width:auto;
flex-grow:1;
}
.handle {
background:#333;
right:0px;
width:30px;
cursor:col-resize;
}
footer {
text-align:center;
}

那是我的 Javascript:

var mx,px,moving=false;
function handMd(e) {
mx = e.pageX;
px = document.getElementById('nav').clientWidth;
moving = true;
}
function handMm(e) {
if (moving) {
e.preventDefault();
e.stopPropagation();
e.cancelBubble = true;
e.returnValue = false;
var diff = e.pageX - mx;
document.getElementById('nav').style.width = (px + diff)+'px';
document.getElementById('article').style.width = (window.innerWidth-px-diff)+'px';
}
}
function handMu(e) {
moving = false;
}

这是一个工作示例:https://jsfiddle.net/45h7vq7u/

另一个例子,包括瑞安徐的回答:https://jsfiddle.net/v1cmk2f6/1/ (文本选择消失了,但div仍然不会平滑移动,但只有快速向右移动时)。

最佳答案

使用您喜欢的方法捕获开始移动完成移动的事件(onMouseDownonMouseUp 都可以).添加一个 CSS 类来指定 Action 开始时的移动状态。操作完成时删除 CSS 类。

对于您的情况,您可以尝试以下操作:

添加一个新的 CSS 类:

.moving {
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}

扩展您的 handMd()handMu() 函数:

function handMd(e) {
mx = e.pageX;
px = document.getElementById('nav').clientWidth;
moving = true;
document.getElementById('article').classList.toggle('moving', true); // Add this line. 'article' is the id of the element where you don't want the selection to occur.
}
function handMu(e) {
moving = false;
document.getElementById('article').classList.toggle('moving', false); // Add this line. 'article' is the id of the element where you don't want the selection to occur.
}

关于javascript - 如何防止文本选择阻碍 onMouseMove 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44361408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com