div随着鼠标的移动而移动

Posted Dione_xin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div随着鼠标的移动而移动相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        function getXy1(event) {
            var flow = document.getElementById("flow");
            flow.style.left = event.clientX  + 5 +"px";
            flow.style.top  = event.clientY  + 5 + "px";
            flow.innerHTML="<h6>"+event.clientX+":"+event.clientY+"</h6>";
        }
    </script>
</head>
//注意这里用的方法  onmousemove;body里边设置了一个样式

<body onmousemove="getXy1(event)"style="height: 1000px">
<div id="flow" style="width: 80px;height: 50px;position:absolute"></div>
</body>
</html>

以上是关于div随着鼠标的移动而移动的主要内容,如果未能解决你的问题,请参考以下文章

当鼠标一段时间没有移动时,用jQuery隐藏div元素?

js实现——鼠标移动时跟随着一连的小图片

div随鼠标移动

如何让 div 在悬停时消失而不会在鼠标移动时闪烁?

案例:简易的Div拖拽

div跟随鼠标移动