随鼠标移动

Posted

tags:

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

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<span id="a" style="position:absolute;border: 1px solid blue">
    跟着我
</span>
<script>
    function a(){
        var div = document.getElementById("a");
        if (!div) {
            return;
        }
        var intX = window.event.clientX;
        var intY = window.event.clientY;
        div.style.left = intX + "px";
        div.style.top = intY + "px";
    }
    document.onmousemove = a;
</script>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<span id="a" style="border: 1px solid blue">
    跟着我
</span>
<script>
    function a(){
        var div = document.getElementById("a");
        div.style.position=‘absolute‘;
        div.style.left = window.event.clientX+ "px";
        div.style.top =window.event.clientY+ "px";
    }
    document.onmousemove = a;
</script>
</body>
</html>

 超简单版的跟着鼠标移动

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

Qt 窗口随鼠标移动

MFC中单击button并随鼠标移动怎么实现?

向量学习3:蝌蚪随鼠标移动且蝌蚪头部总是指向鼠标

向量学习3:蝌蚪随鼠标移动且蝌蚪头部总是指向鼠标

div随鼠标移动

JavaScript 技术篇-一段js代码展示可以随鼠标移动变换样式的卡通人物,动态女生眼睛跟着鼠转动