1
$(this).animate({'backgroundColor':'red'},600)
.animate({'color':'#fff'},600);
.animate
のイベントは、最初のイベントが完了するのを待つのではなく、同時に発生させることができますか?複数の.animationイベントでのキューイングの防止
$(this).animate({'backgroundColor':'red'},600)
.animate({'color':'#fff'},600);
.animate
のイベントは、最初のイベントが完了するのを待つのではなく、同時に発生させることができますか?複数の.animationイベントでのキューイングの防止
同じanimate
コールでそれらを指定する:
$(this).animate({
'backgroundColor':'red',
'color':'#fff'
},600);
あなたのアニメーション文で変更する複数のものを指定することができるはずです。
$(this).animate({
'backgroundColor':'red',
'color':'#fff'
} ,600);
それは.animate()
ためthe documentationに権利があります。
だから明らかです!ありがとうございました。 – UserIsCorrupt
'.animate'で、' .toggleClass'のようなものがあればどうなりますか? – UserIsCorrupt