$(this).animate({'backgroundColor':'red'},600)
.animate({'color':'#fff'},600);
如何让两个.animate
事件同时发生而不是第二个事件等待第一个事件完成?
答案 0 :(得分:2)
通过在同一animate
电话中指定它们:
$(this).animate({
'backgroundColor':'red',
'color':'#fff'
},600);
答案 1 :(得分:0)
您应该能够在动画声明中指定多个更改的内容。
$(this).animate({
'backgroundColor':'red',
'color':'#fff'
} ,600);
.animate()
{{1}}就在那里。