<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>图片随鼠标移动</title>
    <script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
    <script type="text/javascript">        
$(function () {            
            $(document).mousemove(function (e) {
                $("#divMouse").css("left", e.pageX).css("top",e.pageY);

            });
      });      
    </script>
</head>
<body>
<div style=" width:200px; float:left;"><marquee>文字自右往左移动</marquee></div>  
   <div /></div>   
</marquee>
</div>
</body>
</html>

相关文章:

  • 2022-12-23
  • 2021-06-10
  • 2022-12-23
  • 2018-09-21
  • 2021-11-08
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案