문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. <html> <div id="triangle"> <div class="top"></div> <div class="fill"></div> <div class="bottom"></div> </div> <style> #triangle { width: 100px; height: 100px; position: relative; overflow: hidden; } .top, .fill, .bottom { width: 100%; height: 0; position: absolute; transition: height 0.5s ease-out; } .top { border-style: solid; border-width: 0 50px 86.6px 50px; border-color: transparent transparent #f00 transparent; top: 0; left: 0; } .fill { background-color: #f00; top: 50%; left: 0; } .bottom { border-style: solid; border-width: 86.6px 50px 0 50px; border-color: #f00 transparent transparent transparent; bottom: 0; left: 0; } #triangle.open .top { height: 50%; } #triangle.open .fill { height: 50%; } #triangle.open .bottom { height: 0; } </style> <script> var triangle = document.getElementById("triangle"); triangle.addEventListener("click", function() { triangle.classList.toggle("open"); }); </script> </html> 이 문서에서 사용한 틀: 틀:+1 (원본 보기) 틀:-1 (원본 보기) 틀:10.24 혁명 (두 번째 유신) (원본 보기) 틀:국기그림 (원본 보기) 틀:국기그림/구현 (원본 보기) 틀:나라자료 대한민국 (원본 보기) 연습장:Sakura/1 문서로 돌아갑니다.