javascript – jQuery暂停/恢复动画

前端之家收集整理的这篇文章主要介绍了javascript – jQuery暂停/恢复动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这不适合我…
$(document).ready(function(){
    $('#h .a').animate({
        top:'-=80px'
    },90,'linear');

    $('#h .au,#h .di').animate({
        left:'-=80px'
    },50000000,'linear');

    $('#h .r').animate({
        left:'-=80px'
    },250,'linear');

    $("#h").animate('pause'); //pausing it at the start
    //resume pause switch
    $("#h").mouSEOver(function(){
      $(this).animate('resume');
    }).mouSEOut(function(){
      $(this).animate('pause');
    });

});

解决方法

查看演示: http://api.jquery.com/clearQueue/

看起来就像你想要做的那样.

猜你在找的jQuery相关文章