我有一些 JavaScript 代码,当鼠标单击 div 时,它通过更改其“左”CSS 属性来从左向右滑动 div。代码运行良好。最初,div 的left = 0
. 假设我想将 div 滑动到某个随机数。我会这样做:
function move(){
var final = Math.random()*100 //Lets suppose final gets the value equal to 145 in this case
....code for sliding goes here
}
所以,现在 div 的左边应该等于 145px。
现在,当我再次单击 div 时,会发生这种情况:
function move(){
var final = Math.random()*100 //Lets suppose final gets the value equal to 30 in this case
....code for sliding goes here
}
现在,div 不应该从 145 像素滑到 30 像素吗?因为当我第一次单击 div 时,它的左侧变为 145 像素,不再保持为 0。在我的情况下,当我再次单击时,它首先回到 0 像素,然后移动 30 像素。