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

文字跟随鼠标移动的效果

时间:2015-08-20 22:18:25      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jquery</title>
<style>
body{height:3000px; background:#09F;}
.wenzi{position:absolute; left:0; top:0;}
p{cursor:pointer;}
</style>

<script src="jquery.js" type="text/javascript"></script>
<script>
$(function(){
    $(document).mousemove(function(e){var x=e.pageX-$(p).width()/2;    //获取鼠标的x坐标
        var y=e.pageY-$(p).height()/2-10;   //获取鼠标的y坐标
         $(.wenzi).css({left:x,top:y},1000)
    });
})
</script>
</head>
<body>
<p class=‘wenzi‘>这是一段文字</p>
</body>
</html>

 

文字跟随鼠标移动的效果

标签:

原文地址:http://www.cnblogs.com/FightingTT/p/4746213.html

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