Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function moveleft(){
  2.  
  3. for(i=1;i<14;i++){
  4. move[i]=move[i]-3
  5. var randomnum1 = Math.floor(820*Math.random())+1;
  6. var randomnum2 = Math.floor(1500*Math.random())+1280;
  7. document.getElementById(i).style.left= move[i]
  8. if (move[i]<0-45){
  9. document.getElementById(i).style.top= randomnum1
  10. move[i]=randomnum2
  11. }
  12.  
  13. }
  14. setTimeout("moveleft();",1);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement