|
|
dropthebomb - Devote.se
0
Width =1000; // ange bredden p sidan som ska snas in...
Height =2000; // ange hjden p sidan som ska snas in...
Count =30; // antal snflingor OBS! ange inte fr stort antal!
MaxStep=5; // max steg i rrelsen
MinStep=1; // min steg i rrelsen
MaxFlake=10; // max storlek p snflinga
MinFlake=4; // min storlek p snflinga
PosX = new Array();
PosY = new Array();
StepX = new Array();
StepY = new Array();
StarSize=new Array();
for (i = 0; i < Count; i++) {
PosX[i] = Math.random()*Width;
PosY[i] = Math.random()*Height;
StepX[i] =MinStep+Math.random()* -MaxStep;
StepY[i] =MinStep+Math.random()* MaxStep;
StarSize[i]=MinFlake+Math.random() * MaxFlake;
document.write("");
}
function animate() {
for (i = 0; i < Count; i++) {
PosY[i] += StepY[i];
PosX[i] += StepX[i];
document.getElementById("Obj"+i).style.visibility = "visible";
if (PosY[i] > Width || PosX[i] > Height || PosX[i]
|