2 回答
TA贡献1777条经验 获得超3个赞
您需要在动画进行时设置一个标志,并且在动画仍在进行时不要执行该函数
var animationInProgress = false;
function myMove() {
if (animationInProgress) {
return;
}
var elem = document.getElementById("animate");
var pos = 0;
var id = setInterval(frame, 5);
animationInProgress = true;
function frame() {
if (pos == 350) {
animationInProgress = false;
clearInterval(id);
} else {
pos++;
elem.style.top = pos + "px";
elem.style.left = pos + "px";
}
}
}
#container {
width: 400px;
height: 400px;
position: relative;
background: yellow;
}
#animate {
width: 50px;
height: 50px;
position: absolute;
background-color: red;
}
<p><button onclick="myMove()">Click Me</button></p>
<div id="container">
<div id="animate"></div>
</div>
TA贡献1848条经验 获得超10个赞
我能想到的有两种方法:
第一个是禁用按钮,并创建一个计时器(setTimeout)来重新启用它
第二个是保存第二次单击的时间,并检查您的单击处理程序是否很快发生另一次单击(使用保存的第二次单击时间)。
- 2 回答
- 0 关注
- 96 浏览
添加回答
举报