[JS]テキストや背景のカラーをアニメーションで変更するスクリプト -Color Animations
Post on:2009年6月25日
テキストや背景のカラーをアニメーションで少しずつ変更するスクリプトをDesizn Techから紹介します。
Playing with jQuery Color Plugin and Color Animation
demo
デモでは、テキストのカラーを変更するもの、背景を変更するもの、それぞれ異なるカラーに変更するものなどがあります。
テキストのカラーを変更する場合は、下記のように指定します。
1 2 3 4 5 6 7 |
<textarea name="code" class="html" cols="60" rows="5"> $(".first a").hover(function() { $(this).animate({color: "#00eeff" }, 400); },function() { $(this).animate({color: "#FFFFFF" }, 500); }); </textarea> |
カラーの指定やスピードも簡単に変更できます。
Color AnimationsはjQueryのプラグインのため、実装にはjquery.jsが必要です。
sponsors