Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery のアニメーション機能は background-color では機能しません。jQuery UI や他のプラグインを追加せずに、背景色を白から色にスムーズに変更するにはどうすればよいですか?
これは、fadeIn() を使用する簡単なトリックで実行できます。
$('element').css('background-color','red'); $('element').hide(); $('element').fadeIn(500);