防止在多个.animation事件期间排队

时间:2012-04-19 14:11:34

标签: javascript jquery

$(this).animate({'backgroundColor':'red'},600)
       .animate({'color':'#fff'},600);

如何让两个.animate事件同时发生而不是第二个事件等待第一个事件完成?

2 个答案:

答案 0 :(得分:2)

通过在同一animate电话中指定它们:

$(this).animate({
   'backgroundColor':'red',
   'color':'#fff'
},600);

答案 1 :(得分:0)

您应该能够在动画声明中指定多个更改的内容。

$(this).animate({
    'backgroundColor':'red',
    'color':'#fff'
} ,600);

.animate() {{1}}就在那里。