<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>