Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. function random_background(){
  5. let red = Math.floor(Math.random() * 256);
  6. let green = Math.floor(Math.random() * 256);
  7. let blue = Math.floor(Math.random() * 256);
  8. let randomcolor = "rgb(" + red + "," + green + "," + blue + ")";
  9. console.log(randomcolor);
  10. document.body.style.background = randomcolor;
  11. }
  12. </script>
  13. <input type="button" value="randomize" onclick="setInterval(random_background, 1000);">
  14. </head>
  15. <body>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement