Advertisement
Guest User

laby2

a guest
Mar 19th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. <html>
  2. <head>
  3.   <meta charset="UTF-8">
  4.   <style>
  5.     #square{
  6.       width: 300px;
  7.       height: 300px;
  8.       background-color: gray;
  9.       border: 1px solid black;
  10.       margin-left: 30px;
  11.     }
  12.     #form{
  13.       margin-top: 40px;
  14.     }
  15.     input[type=button]{
  16.       display:block;
  17.       margin-top: 30px;
  18.       margin-left: 30px;
  19.     }
  20.  
  21.   </style>
  22.   <script type="text/javascript">
  23.     function ustawKolor()
  24.     {
  25.       kwadrat = document.getElementById("square");
  26.       wartosc = Math.random()*100;
  27.       kwadrat.style.backgroundColor="rgb("+wartosc+"%,"+wartosc+"%,"+wartosc+"%)";
  28.     }
  29.   </script>
  30. </head>
  31.  
  32. <body>
  33.   <div id="square"></div>
  34.   <form id="form">
  35.     <input type="button" value="Ustaw Kolor" onclick="ustawKolor()"/>
  36.   </form>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement