我刚开始学习 Javascript,并尝试编写一个脚本,允许用户使用鼠标指针左右推动一个框。
当指针触及框的左侧时,我设法解决了这个问题,但我在这里面临两个问题:
- 当指针进入框内时,框跳到新坐标。当指针进入盒子时,我希望盒子保持在原来的位置。
- 当鼠标触摸到盒子的右侧时,我真的无法弄清楚。我想让盒子向左推。我制作了一个box.offsetRight属性来帮助我,但不能有效地使用它。
这是一张图片来说明我的意思:
“X”标记是指针所在的位置。并朝着盒子的右侧前进。如何将盒子推到左边?
这是我尝试做的(当然没有用):
索引.html
<html>
<head>
<title>Chase the box</title>
<style>
body {
}
.css-box{
position: absolute ;
top:20px;
width : 100px;
height : 100px;
background-color : blue;
}
.css-textbox{
margin-top: 500px;
}
</style>
</head>
<body>
<div id="box" class="css-box"></div>
<div class="css-textbox">
<p>All : <input id="allTextbox" type="text"></input></p>
<p>Left : <input id="leftTextbox" type="text"></input></p>
<p>Right : <input id="rightTextbox" type="text"></input></p>
<p>e.pageX(Left) : <input id="pageXTextbox" type="text"></input></p>
<p>e.pageX(Right) : <input id="pageXRightTextbox" type="text"></input></p>
</div>
<script type="text/javascript" src="helper.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
脚本.js
var box = document.getElementById("box");
var allTextbox = document.getElementById("allTextbox");
var leftTextbox = document.getElementById("leftTextbox");
var rightTextbox = document.getElementById("rightTextbox");
var pageXTextbox = document.getElementById("pageXTextbox");
var PageXRightTextbox = document.getElementById("pageXRightTextbox");
Object.prototype.offsetRight = window.innerWidth - (box.offsetWidth + box.offsetLeft);
var pushBox = function(e){
var pageXRight = window.innerWidth - e.pageX;
box.offsetRight = window.innerWidth - (box.offsetWidth + box.offsetLeft);
if (e.pageX >= box.offsetLeft){
box.style.left = e.pageX + "px";
} else if(pageXRight >= box.offsetRight){
box.style.right = pageXRight + "px";
}
allTextbox.value = window.innerWidth;
leftTextbox.value = box.offsetLeft;
rightTextbox.value = box.offsetRight;
pageXTextbox.value = e.pageX;
pageXRightTextbox.value = pageXRight;
};
box.addEventListener("mousemove" , pushBox);
我希望使用 Javascript 而不是 Jquery 找到答案。
谢谢。