码迷,mamicode.com
首页 > Web开发 > 详细

图片随鼠标动(jQuery)

时间:2018-03-21 11:40:40      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:offsetx   ext   query   fun   鼠标   head   class   jquery   mouse   

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
  <script src="js/jquery-1.12.3 (1).js"></script>
   <style type="text/css">
   .wap{
    height: 500px;
    width: 500px;
    background-color:aquamarine;
    position: relative;
   }
   img{
    position: absolute;
   }
  </style>
  
  <script type="text/javascript">
   $(function(){
    $(".wap").mousemove(function(e){
     $(".img").css({
      "top":e.offsetY,
      "left":e.offsetX
     })
    });
   });
  </script>
 
 </head>
 <body>
  <div class="wap">
   
  </div>
  <img class="img" height="30" width="30" src="img/untitled.png"/>
 </body>
</html>

图片随鼠标动(jQuery)

标签:offsetx   ext   query   fun   鼠标   head   class   jquery   mouse   

原文地址:https://www.cnblogs.com/index0629/p/8615189.html

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