zoukankan      html  css  js  c++  java
  • 鼠标对象事件

     

    图片跟随鼠标移动

    <!DOCTYPE html>
    <html lang="en">

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            img {
                position: absolute;
            }
        </style>
    </head>

    <body>

        <img src="images/angel.gif" alt="">

        <script>
            var pic = document.querySelector('img');
            document.addEventListener('mousemove', function(e) {
                // 鼠标移动就会触发
                var x = e.pageX;
                var y = e.pageY;
                pic.style.left = x - 50 + 'px';
                pic.style.top = y - 40 + 'px';

            })
        </script>
    </body>

    </html>
  • 相关阅读:
    Valid Parentheses
    3Sum
    泛型(一)
    Longest Common Prefix
    Roman to Integer
    Integer to Roman
    Container With Most Water
    知道创宇研发技能表v2.2
    anti-dns pinning 攻击
    dominator
  • 原文地址:https://www.cnblogs.com/ericblog1992/p/13054939.html
Copyright © 2011-2022 走看看