私は Javascript の初心者で、マウス ポインターを使用してボックスを押す簡単なスクリプトを作成しようとしています。残念ながら、何らかの理由で機能していません。皆さんが私を助けてくれることを願っています。
(このスクリプトは非常に原始的なもので、現在までボックスを左から押すだけです)。
index.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>
script.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);