码迷,mamicode.com
首页 > 其他好文 > 详细

跟着鼠标飞的图片

时间:2019-08-27 11:02:58      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:position   function   doctype   html   src   page   pos   height   get   

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    body {
      height: 1000px;
    }
    #ts {
      position: absolute;
    }
  </style>
</head>
<body>
  <img src="images/tianshi.gif" id="ts" alt="">
  <script>
    var ts = document.getElementById(ts);
    document.onmousemove = function (e) { 
      e = e || window.event;
      // ts.style.left = e.clientX - 10 + ‘px‘;
      // ts.style.top = e.clientY - 10 + ‘px‘;

      ts.style.left = e.pageX - 10 + px;
      ts.style.top = e.pageY - 10 + px;
    }
  </script>
</body>
</html>

 

跟着鼠标飞的图片

标签:position   function   doctype   html   src   page   pos   height   get   

原文地址:https://www.cnblogs.com/jiumen/p/11416408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!