<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<title>Leon</title>
</head>
<body>
</body>
</html>
<script>
// 鼠标跟随
// 创建一个跟随的标签
var sp = document.createElement( span );
sp.innerText = Follow me all the time ;
sp.style.position = absolute ;
document.body.appendChild(sp);
// 页面的鼠标必定事件
document.onmousemove = function(e){
e = e || window.event;
// 将鼠标的定位给到sp标签
sp.style.top = e.pageY + 10 + px ;
sp.style.left = e.pageX + 20 + px ;
}
</script>
© 版权声明
文章版权归作者所有,未经允许请勿转载。如内容涉嫌侵权,请在本页底部进入<联系我们>进行举报投诉!
THE END
暂无评论内容