Advertisement
Guest User

lab

a guest
Mar 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.63 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.       float: left;
  12.     }
  13.     #square2{
  14.       width: 300px;
  15.       height: 300px;
  16.       background-color: gray;
  17.       border: 1px solid black;
  18.       margin-left: 30px;
  19.       float: left;
  20.     }
  21.     #form{
  22.       margin-top: 40px;
  23.     }
  24.     input[type=button]{
  25.       display:block;
  26.       margin-top: 30px;
  27.       margin-left: 30px;
  28.     }
  29.  
  30.   </style>
  31.   <script type="text/javascript">
  32.     var odcienKoloru=50;
  33.     function ustawKolor()
  34.     {
  35.       kwadrat = document.getElementById("square");
  36.       wartosc = odcienKoloru;
  37.       kwadrat.style.backgroundColor="rgb("+wartosc+"%,"+wartosc+"%,"+wartosc+"%)";
  38.     }
  39.     function jasnosc(val)
  40.     {
  41.       kwadrat = document.getElementById("square2");
  42.       if(val=="jasniej"){
  43.         odcienKoloru += 5;
  44.         wartosc = odcienKoloru;
  45.         kwadrat.style.backgroundColor="rgb("+wartosc+"%,"+wartosc+"%,"+wartosc+"%)";
  46.       }
  47.       if(val=="ciemniej"){
  48.         odcienKoloru -= 5;
  49.         wartosc = odcienKoloru;
  50.         kwadrat.style.backgroundColor="rgb("+wartosc+"%,"+wartosc+"%,"+wartosc+"%)";
  51.       }
  52.  
  53.     }
  54.   </script>
  55. </head>
  56.  
  57. <body>
  58.   <div id="square"></div>
  59.   <div id="square2"></div>
  60.   <form id="form">
  61.     <input type="button" value="Ustaw Kolor" onclick="ustawKolor()"/>
  62.     <input id="jasniej" type="button" value="Jasniej" onclick="jasnosc(this.id)"/>
  63.     <input id="ciemniej" type="button" value="Ciemniej" onclick="jasnosc(this.id)"/>
  64.   </form>
  65.  
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement