我如何在 jQuery run in 中有两个效果sequence
,而不是同时?以这段代码为例:
$("#show-projects").click(function() {
$(".page:visible").fadeOut("normal");
$("#projects").fadeIn("normal");
});
和fadeOut
同时fadeIn
运行,如何让它们一个接一个地运行?
我如何在 jQuery run in 中有两个效果sequence
,而不是同时?以这段代码为例:
$("#show-projects").click(function() {
$(".page:visible").fadeOut("normal");
$("#projects").fadeIn("normal");
});
和fadeOut
同时fadeIn
运行,如何让它们一个接一个地运行?
您可以为效果完成后运行的效果函数提供回调。
$("#show-projects").click(function() {
$(".page:visible").fadeOut("normal", function() {
$("#projects").fadeIn("normal");
});
});
你想要的是一个队列。
查看参考页面http://api.jquery.com/queue/以获取一些工作示例。
$( "#foo" ).fadeOut( 300 ).delay( 800 ).fadeIn( 400 );
一定要有目标吗?当然,只要目标是恒定的,您当然可以使用随机目标对事件进行顺序排队……下面我使用动画目标的父级来存储队列。
//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 事件触发时触发,而不是在我上面的示例中触发内联?有效地停止动画队列?