0

这是工作演示。 http://jsfiddle.net/Evqqp/1/

请查看演示以轻松理解问题。快速单击箭头,您将看到视图混乱。

我知道这可能是因为我做了 300 毫秒的动画。什么是处理点击的干净方法,这样它就不会弄乱视图。我可以使用一个标志来检查之前的点击操作是否完成。但我想征求意见,如果有更好的方法来做到这一点。

我做动画的代码

$(".rightArrow").on("click", function () {
    if ((Math.abs(parseInt($(".slideBox").css("margin-left"))) + $(".mainDiv").width()) < $(".slideBox").width()) {
        $(".slideBox").animate({
            "margin-left": parseInt($(".slideBox").css("margin-left")) - $(".mainDiv").width()
        }, 300, checkRightArrow);
        $(".leftArrow").show();
    } else {
        $(".rightArrow").hide();
    }
});

谢谢

4

4 回答 4

1

尝试.stop(true,true)

$(".slideBox").stop(true,true).animate({
于 2013-11-12T15:40:15.020 回答
1

每当使用动画时,您应该始终stop()在元素上使用上一个动画,然后再对其进行动画处理。

$(".slideBox").stop(true, true).animate(...

http://jsfiddle.net/Evqqp/4/

于 2013-11-12T15:42:10.537 回答
1

您需要添加

event.stopPropagation();

后:

$(".rightArrow").on("click", function () {

所以:

$(".rightArrow").on("click", function () {
     event.stopPropagation();
     ... 
于 2013-11-12T15:46:35.710 回答
1

检查您的元素当前是否具有以下动画效果

if(!$('#myElement').is(':animated'))
{
    // Do your animation here
}
于 2013-11-12T15:52:35.977 回答