편집 요약 없음 태그: 되돌려진 기여 |
편집 요약 없음 태그: 되돌려진 기여 |
||
| 14번째 줄: | 14번째 줄: | ||
.content { | .content { | ||
position: absolute; | position: absolute; | ||
top: | top: 0; | ||
left: | left: 100%; | ||
width: | width: 0; | ||
height: | height: 100%; | ||
overflow: hidden; | overflow: hidden; | ||
transition: | transition: width 0.5s ease-in-out, left 0.5s ease-in-out; | ||
} | } | ||
| 36번째 줄: | 36번째 줄: | ||
toggleBtn.addEventListener('click', function() { | toggleBtn.addEventListener('click', function() { | ||
if (isCollapsed) { | if (isCollapsed) { | ||
content.style. | content.style.width = `${container.clientWidth}px`; | ||
content.style.left = 0; | |||
toggleBtn.textContent = '[접기]'; | toggleBtn.textContent = '[접기]'; | ||
} else { | } else { | ||
content.style. | content.style.width = 0; | ||
content.style.left = '100%'; | |||
toggleBtn.textContent = '[펼치기 · 접기]'; | toggleBtn.textContent = '[펼치기 · 접기]'; | ||
} | } | ||
2023년 2월 19일 (일) 18:13 판
숨겨진 내용입니다.