我看到这个问题被问了很多次,但没有一个解决方案对我有用。我有两个要并行执行的效果。
我希望盒子同时淡入和弹跳:http: //jsfiddle.net/6VVUG/
链接 UI 效果,并用于dequeue()
一次执行所有效果。
$("#t").hide().show("fade", {}, {duration:1200}).effect("bounce", { times:3 }, { duration:400}).dequeue();
试试这个
function g()
{
$("#t").hide();
$('#t').show();
$("#t").animate({ opacity: 0.5 }, 0).effect("bounce", { times:3 }, { duration:400, queue: false});
$("#t").animate({ opacity: 1 }, 0);
}