'; ?> '; function posx(){$rand=rand(0, 1920);return $rand;} // position horizontale function posy(){$rand=rand(0, 1080);return $rand;} // position verticale function long(){$rand=rand(1, 2);return $rand;} // longeur des rectangles function col(){$color=substr(md5(rand()), 0, 6);return $color;} // couleur aléatoire function opa(){$color=rand(1, 9);return $color;} // opacité 0.1 à 0.9 function hei(){$color=rand(1, 5);return $color;} // largeur des rectangles function speed(){$color=rand(5, 120);return $color;} // temps de rotation en secondes $iter=0; while($iter!=300) // nombre d'itérations (évitez d'aller au delà de 500 si vous avez un petit CPU) { echo ' '; echo ' '; // 300 rectangles par sens de rotation :D $iter++; } ?>