문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. <html> <head> <style> .collapsible { background-color: #777; color: white; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; transition: 0.4s; } .content { padding: 0 18px; display: none; overflow: hidden; background-color: #f1f1f1; transition: max-height 0.2s ease-out; } .active, .collapsible:hover { background-color: #555; } </style> </head> <body> <h2>펼치기/접기 테스트</h2> <button class="collapsible" id="collapsible">펼치기/접기</button> <div class="content" id="content"> <p>펼침/접음 내용</p> </div> <script> var coll = document.getElementById("collapsible"); var content = document.getElementById("content"); coll.addEventListener("click", function() { this.classList.toggle("active"); if (content.style.display === "block") { content.style.height = "0px"; content.style.width = "0px"; content.style.border = "none"; setTimeout(function() { content.style.display = "none"; }, 400); } else { content.style.display = "block"; var height = content.scrollHeight + "px"; content.style.height = height; content.style.width = "100%"; content.style.border = "1px solid black"; } }); </script> </body> </html> 이 문서에서 사용한 틀: 틀:+1 (원본 보기) 틀:-1 (원본 보기) 틀:10.24 혁명 (두 번째 유신) (원본 보기) 틀:국기그림 (원본 보기) 틀:국기그림/구현 (원본 보기) 틀:나라자료 대한민국 (원본 보기) 연습장:Sakura/1 문서로 돌아갑니다.