Ashies

WEB TECH 4.1

Oct 3rd, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <script>
  4.          
  5.       function changecolor(){
  6.        
  7.          var r=Math.floor(Math.random() * 255);
  8.          document.getElementById("id").style.backgroundColor="rgb("+r+","+r+","+r+")";
  9.  
  10.       }
  11.     </script>
  12.   </head>
  13.  
  14.   <body id="id" >
  15.    
  16.     <script>
  17.         <!-- setInterval(function(){changecolor()},500); -->
  18.       setInterval(changecolor,200);
  19.      
  20.     </script>
  21.   </body>
  22. </html>
Add Comment
Please, Sign In to add comment