16

我如何在 jQuery run in 中有两个效果sequence,而不是同时?以这段代码为例:

$("#show-projects").click(function() {
    $(".page:visible").fadeOut("normal");
    $("#projects").fadeIn("normal");
});

fadeOut同时fadeIn运行,如何让它们一个接一个地运行?

4

4 回答 4

32

您可以为效果完成后运行的效果函数提供回调。

$("#show-projects").click(function() {
    $(".page:visible").fadeOut("normal", function() {
        $("#projects").fadeIn("normal");
    });
});
于 2008-09-16T18:10:27.403 回答
16

你想要的是一个队列。

查看参考页面http://api.jquery.com/queue/以获取一些工作示例。

于 2008-09-16T18:05:45.747 回答
1
$( "#foo" ).fadeOut( 300 ).delay( 800 ).fadeIn( 400 );
于 2014-11-18T05:22:32.913 回答
0

一定要有目标吗?当然,只要目标是恒定的,您当然可以使用随机目标对事件进行顺序排队……下面我使用动画目标的父级来存储队列。

//example of adding sequential effects through
//event handlers and a jquery event trigger
jQuery( document ).unbind( "bk_prompt_collapse.slide_up" );
jQuery( document ).bind( "bk_prompt_collapse.slide_up" , function( e, j_obj ) {
    jQuery(j_obj).queue(function() {
        //running our timed effect
        jQuery(this).find('div').slideUp(400);
        //adding a fill delay to the parent
        jQuery(this).delay(400).dequeue();
    });
});                     
//the last action removes the content from the dom
//if its in the queue then it will fire sequentially
jQuery( document ).unbind( "bk_prompt_collapse.last_action" );
jQuery( document ).bind( "bk_prompt_collapse.last_action" , function( e, j_obj ) {
    jQuery(j_obj).queue(function() {
        //Hot dog!!
        jQuery(this).remove().dequeue();
    });
});
jQuery("tr.bk_removing_cart_row").trigger( 
    "bk_prompt_collapse" , 
    jQuery("tr.bk_removing_cart_row") 
);

不确定它是否可能,但似乎您可以绑定 .dequeue() 以在另一个 jquery 事件触发时触发,而不是在我上面的示例中触发内联?有效地停止动画队列?

于 2014-05-15T07:56:43.270 回答