我是 Javascript 的初学者,并试图制作一个简单的脚本,使用鼠标指针推动一个框。但不幸的是,由于某种原因它不起作用,我希望你们能帮助我。
(这个脚本真的很原始,只是从左边推箱子到现在)。
索引.html:
<html>
<head>
<title>Chase the box</title>
<style>
body {
}
.css-box{
width : 100px;
height : 100px;
margin : auto;
background-color : blue;
}
</style>
</head>
<body>
<div id="box" class="css-box"></div>
<script type="text/javascript" src="script.js"></script>
</body>
脚本.js:
var box = document.getElementById("box");
var pushBox = function(e){
if(e.pageX == box.offsetLeft){
box.style.left = box.style.left + 1 + "px";
}
};
document.addEventListener("mousemove" , pushBox);