Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <style>
  5. .hidden {display: none}
  6. .kolorki {color: crimson; margin: 30px; border: 3px solid blue; padding: 20px;}
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <div id="ukryty" class="hidden">
  12. <h1>Wybierz konfiguracje</h1>
  13.  
  14. Wybierz procesor
  15. <select id="procek">
  16. <option value="i3">Intel Core I3</option>
  17. <option value="i5">Intel Core I5</option>
  18. <option value="Ryzen">AMD Ryzen</option>
  19. </select>
  20. </div>
  21.  
  22.  
  23. <button id="przycisk" onclick="moja_funkcja()" type="button">Pokaż</button>
  24.  
  25.  
  26. </body>
  27. </html>
  28.  
  29. <script>
  30. function moja_funkcja() {
  31. var diw = document.getElementById('ukryty');
  32. var przycisk = document.getElementById('przycisk');
  33.  
  34.  
  35. if (diw.classList.contains('hidden')) {
  36. diw.classList.remove('hidden');
  37. diw.classList.add("kolorki");
  38.  
  39. przycisk.firstChild.data="Ukryj";
  40. } else {
  41. diw.classList.add('hidden');
  42. diw.classList.remove('kolorki');
  43. przycisk.firstChild.data="Pokaż";
  44. }
  45. }
  46.  
  47.  
  48.  
  49. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement