Advertisement
Guest User

JS Disco

a guest
Nov 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.45 KB | None | 0 0
  1. <body>
  2.   <h1 style="margin: auto;width: -moz-fit-content;margin-top: 34vh;font-size: 6em;">YEAH!<br>
  3.   LET'S PARTAYYYY</h1>
  4.   <script>
  5.     const r = n => Math.round(Math.random() * n);
  6.     const rrgb = rrgb => `rgb(${r(256)}, ${r(256)}, ${r(256)})`;
  7.     function disco() {
  8.       document.body.setAttribute('style', `color: ${rrgb()} !important; background-color: ${rrgb()} !important`);
  9.     }
  10.     window.setInterval(1750, disco);
  11.   </script>
  12. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement