jQuery.Twinkleを背景のアクセントとして使うコード – console.lealog();

// jQueryと、jQuery.Twinkleは読み込んでおいてから・・・。

jQuery(function(){

var b = 0,

c = function() {

var c = ["rgba(39,74,120,0.3)", "rgba(0,148,200,0.2)", "rgba(193,228,233,0.4)", "rgba(22,94,131,0.3)", "rgba(15,35,80,0.2)", "rgba(74,72,142,0.1)"],

d = c[b++ % c.length],

e = {

widthRatio: Math.random(),

heightRatio: Math.random(),

effect: "splash-css",

effectOptions: {

radius: 200,

duration: 1e3 + Math.random() * 1e3,

color: d

}

};

jQuery("#hogehoge").twinkle(e);

};

jQuery(function() {

setInterval(c, 200)});

});

引用元: jQuery.Twinkleを背景のアクセントとして使うコード – console.lealog();.