-1
http://jsfiddle.net/doktormolle/dNXVx/自動化爆炸文本Jquery Jsfiddle
如何自動生成此動畫?
我對這一切都很陌生,所以任何幫助都非常感謝!
function fx(o)
{
var $o=$(o);
$o.html($o.text().replace(/([\S])/g,'<span>$1</span>'));
$o.css('position','relative');
$('span',$o).stop().css({position:'relative',
opacity:0,
fontSize:84,
top:function(i){return Math.floor(Math.random()*500)*((i%2)?1:-1);},
left:function(i){return Math.floor(Math.random()*500)*((i%2)?1:-1);}
}).animate({opacity:1,fontSize:12,top:0,left:0},1000);
}
你要什麼自動發生?沒有點擊?像這樣> http://jsfiddle.net/dNXVx/479/ –
看看jQuery的ready方法。 – MKS
@Vega恰恰是,但不重複。謝謝! – user1864681