马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
<!DOCTYPE html>
<html>
<style>
#test {
position: absolute;
padding: 10px;
cursor: move;
z-index: 10;
}
</style>
<body>
<div id="test">test</div>
<script>
let elmnt = document.getElementById("test");
let pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
elmnt.onmousedown = mousedown;
function mousedown(e) {
e = e || window.event;
e.preventDefault();
pos3 = e.screenX;
pos4 = e.screenY;
document.onmouseup = function(){
document.onmousedown = null;
document.onmousemove = null;
};
document.onmousemove = drag;
}
function drag(e) {
e = e || window.event;
e.preventDefault();
pos3 = e.screenX;
pos4 = e.screenY;
elmnt.style.top = (pos3) + "px";
elmnt.style.left = (pos4) + "px";
}
</script>
</body>
</html>
啊啊啊到底是哪里错了
出现错误的原因是在drag函数中将pos3赋值给了elmnt.style.top,将pos4赋值给了elmnt.style.left,导致元素在移动时位置改变不正确。
你可以修改drag函数中的代码: function drag(e) {
e = e || window.event;
e.preventDefault();
let newPos1 = e.screenX - pos3;
let newPos2 = e.screenY - pos4;
pos3 = e.screenX;
pos4 = e.screenY;
elmnt.style.top = (elmnt.offsetTop + newPos2) + "px";
elmnt.style.left = (elmnt.offsetLeft + newPos1) + "px";
}
|