div随着鼠标的移动而移动
Posted Dione_xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div随着鼠标的移动而移动相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
function getXy1(event) {
var flow = document.getElementById("flow");
flow.style.left = event.clientX + 5 +"px";
flow.style.top = event.clientY + 5 + "px";
flow.innerHTML="<h6>"+event.clientX+":"+event.clientY+"</h6>";
}
</script>
</head>
//注意这里用的方法 onmousemove;body里边设置了一个样式
<body onmousemove="getXy1(event)"style="height: 1000px">
<div id="flow" style="width: 80px;height: 50px;position:absolute"></div>
</body>
</html>
以上是关于div随着鼠标的移动而移动的主要内容,如果未能解决你的问题,请参考以下文章