- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试让一个 div 元素使用 javascript 跟随我的鼠标,但它一直在左上角出现故障。这是我的代码:
HTML:
<html>
<body>
<div id="circle"></div>
</body>
</html>
body{
margin:0;
padding:0;
overflow:hidden;
background-color:#77dd77;
}
div{
position:absolute;
transform:translate(-50%,-50%);
height:35px;
width:35px;
border-radius:50%;
border:2px solid black;
}
document.addEventListener('mousemove', function(e) {
let body = document.querySelector('body');
let circle = document.getElementById('circle');
let left = e.offsetX;
let top = e.offsetY;
circle.style.left = left + 'px';
circle.style.top = top + 'px';
});
最佳答案
您应该使用 e.pageY
和 e.pageX
而不是 e.offset...
因为page...
是相对于整个文档的。 offset...
相对于父容器(在本例中为 body
)并且因为 body
没有高度(因为它的 child 的位置是绝对的)offset...
的鼠标检测不一致。
let circle = document.getElementById('circle');
const onMouseMove = (e) =>{
circle.style.left = e.pageX + 'px';
circle.style.top = e.pageY + 'px';
}
document.addEventListener('mousemove', onMouseMove);
body{
margin:0;
padding:0;
overflow:hidden;
background-color:#77dd77;
}
div{
position:absolute;
transform:translate(-50%,-50%);
height:35px;
width:35px;
border-radius:50%;
border:2px solid black;
}
<html>
<body>
<div id="circle"></div>
</body>
</html>
关于javascript - 我正在尝试让一个 div 元素跟随我的鼠标(javascript),但它一直出现故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62347848/
我是一名优秀的程序员,十分优秀!