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

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

4

2 回答 2

2

通过在同一个animate调用中指定它们:

$(this).animate({
   'backgroundColor':'red',
   'color':'#fff'
},600);
于 2012-04-19T14:16:38.083 回答
0

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

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

它就在. _.animate()

于 2012-04-19T14:17:27.350 回答