图片随鼠标动(jQuery)

Posted PHP`reader

tags:

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

<!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)的主要内容,如果未能解决你的问题,请参考以下文章

减少jQuery依赖, CSS3实现鼠标悬停动效

div随鼠标移动

先谢谢了,求助求助,jquery 图片随屏幕大小而变化。

怎样用JQuery实现当鼠标停留在某区域3秒后执行方法

jQuery - 用动态图像源替换主图像源

jquery大神帮我做个遮罩吧