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を使用して、新しいコメントがstackoverflowの応答壁に表示されたときに、背景色のフェードアウトのフェードアウトを模倣するjquery効果はありますか:)
バニラjQueryでは色を簡単にアニメーション化できませんが、jQueryUIはその機能を追加します。
$('#foo').animate({ backgroundColor: "#60ffff" }, 1000);
また、jQuery UIのハイライト機能は、あなたが求めているものに近いものを実行します。
$('#bar').effect("highlight", {}, 1000);
すべての jQuery UI をページに取り込みたくない場合は、 jquery-colorプラグインを使用できます。