既知の数の div に対してプロパティを生成したいのですが、どこが間違っていたのかを突き止めることができます。私が今試したことは次のとおりです。
$(document).ready(function(){
for(var i=1; i<=7; i++)
{
var randBottom = Math.ceil(Math.random()*200);
var randHeight = Math.ceil(Math.random()*300)+200-randBottom;
var randWidth = Math.ceil(Math.random()*50)+20;
var oceanWidth= $("#ocean").css(["width"]);
var randLeft= Math.ceil(Math.random()*oceanWidth)-randWidth;
var cssObj = {
'bottom' : randBottom+'px',
'height' : randHeight+'px',
'widht' : randWidth+'px
};
$("#bubble"+i).css(cssObj);
}
});
これは進行中の完全なサンプルです。