Advertisement
KAR98S

randomColor

Apr 28th, 2020 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en"> <meta charset="utf-8"/>
  3. <body id = "textId" >
  4. <center>
  5.     <p style = "color:red;background:white;">
  6.         WHAT COLOR?
  7.     </p>
  8.     <button onclick = "changeColor()">
  9.         Change!!!
  10.     </button>
  11. </center>
  12.         <script>
  13.     function randIntr(Hl) {
  14.       return Math.floor(Math.random() * (Hl + 1) ) ;
  15.    }
  16.     function changeColor(){
  17.         var text = document.getElementById("textId");
  18.         text.style = "background:rgb("+randIntr(255)+","+randIntr(255)+','+randIntr(255) + ");";
  19.     }
  20.     </script>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement