ボックスをランダムな位置にアニメーション化してから元の位置に戻しますが、このスクリプトで + 不透明度を 0 から 100 に追加する方法がわかりません
$(document).ready(function(){
var h = $(window).height();
var w = $(window).width();
$('#intro .box').each(function(){
var originalOffset = $(this).position(),
$this = $(this),
tLeft = w-Math.floor(Math.random()*900),
tTop = h-Math.floor(Math.random()*900);
$(this).css({
"left": tLeft,
"top": tTop
});
$this.animate({ "left": originalOffset.left,
"top": originalOffset.top
},5000);
});
});
助けてください:)ここにデモがあります:http://jsfiddle.net/HgMB4/24/