Facebook
From 123, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 209
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title id="p2"> Petla for-in </title>
  5. <meta charset="UTF-8">
  6. <style>
  7. #x {
  8. background-color:green;
  9.  
  10. }
  11. #z {
  12. background-color:black;
  13.  
  14. }
  15. #y {
  16. background-color:purple;
  17.  
  18.  
  19. }
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. </style>
  27. </head>
  28. <body>
  29. <div id="x"><h1>Siema</div></h1>
  30. <div id="z"><h1>Siemamanko</div></h1>
  31. <div id="y"><h1>Siemanko</div></h1>
  32. <button onClick="zol()">ŻÓŁTY</button>
  33. <button onClick="ziel()">ZIELONY</button>
  34. <button onClick="cze()">CZERWONY</button>
  35.  
  36. <script>
  37.  
  38. function zol(){
  39. document.getElementById("x").style.backgroundColor = "yellow";
  40.  
  41. }
  42.  
  43. function ziel(){
  44. document.getElementById("z").style.backgroundColor = "green";
  45. }
  46.  
  47. function cze(){
  48. document.getElementById("y").style.backgroundColor = "red";
  49. }
  50. </script>
  51.  
  52.  
  53. </body>
  54.  
  55.  
  56. </html>
  57.