Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.onload = function(event)
- {
- var Gcarre = document.getElementById("Gcarre");
- var RandomBlobz;
- for (i=0; i<64; i++)
- { //Peut etre utilisé une fonction createCarre(i); ?
- var Pcarre = document.createElement("div");
- Pcarre.id = i;
- Pcarre.className = "CarreGros";
- RandomBlobz = BlobzyRandom();
- Pcarre.style.backgroundImage = "url(" + RandomBlobz +")";
- Gcarre.appendChild(Pcarre);
- }
- }
- function BlobzyRandom ()
- {
- var Blobz = new Array("Bluzy.png","Greezy.png","Redzy.png","Yellzy.png","Zygrey.png");
- var RandomBlobz = Blobz[Math.floor(Math.random()*Blobz.length)];
- return RandomBlobz;
- }
- function Switch() //quelle parametre lui passé ?
- {
- }
Advertisement
Add Comment
Please, Sign In to add comment