Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <style>
  5. button.accordion {
  6. background-color: #eee;
  7. color: #444;
  8. cursor: pointer;
  9. padding: 18px;
  10. width: 100%;
  11. border: none;
  12. text-align: left;
  13. outline: none;
  14. font-size: 15px;
  15. transition: 0.4s;
  16. }
  17.  
  18. button.accordion.active, button.accordion:hover {
  19. background-color: #ddd;
  20. }
  21.  
  22. div.panel {
  23. padding: 0 18px;
  24. display: none;
  25. background-color: white;
  26. }
  27. </style>
  28. <script>
  29. var acc = document.getElementsByClassName("accordion");
  30. var i;
  31.  
  32. for (i = 0; i < acc.length; i++) {
  33. acc[i].onclick = function(){
  34. this.classList.toggle("active");
  35. var panel = this.nextElementSibling;
  36. if (panel.style.display === "block") {
  37. panel.style.display = "none";
  38. } else {
  39. panel.style.display = "block";
  40. }
  41. }
  42. }
  43. </script>
  44. </head>
  45. <body>
  46.  
  47. <h2>Accordion</h2>
  48.  
  49.  
  50.  
  51. <button class="accordion">Section 2</button>
  52. <div class="panel">
  53. <button class="accordion">Section 1</button>
  54. <div class="panel">
  55. <p>
  56. content
  57. </p>
  58. </div>
  59. </div>
  60.  
  61. <button class="accordion">Section 3</button>
  62. <div class="panel">
  63. <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
  64. </div>
  65.  
  66.  
  67. </body>
  68.  
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement