各スパンを 3 秒間隔でランダムな色の間で回転させようとしています。
JSFiddle: http://jsfiddle.net/WERFJ/21/
<h1><span class="first">TEXT1</span> <span class="second">TEXT2</span> <span class="third">TEXT3</span></h1>
現在、以下のコードとjquery.animate-colorsプラグインを使用しています。これを実行するか、同じ効果をより速く得る方法はありますか? Chrome はそれを処理できますが、FF はしばしばクラッシュします。ありがとう!
$(document).ready(function() {
spectrum();
function spectrum(){
var hue1 = 'rgb(' + 128 + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
var hue2 = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + 128 + ',' + (Math.floor(Math.random() * 256)) + ')';
var hue3 = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + 128 + ')';
$('.first').animate( { color: hue1 }, 3000);
$('.second').animate( { color: hue2 }, 3000);
$('.third').animate( { color: hue3 }, 3000);
spectrum();
}
});