아주 간단하게 스크롤 페이지 이동 효과 만들기
html 코드 hello world new page css #main { width: 100vw; height: 100vh; overflow: auto; ... } #sub { width: 100vw; height: 10px; } main에서 스크롤하면 sub가 나오도록 하고 싶다면 이렇게 페이지를 구성한 뒤 window.addEventListener("wheel", (e) => { if (window.scrollY > 0) { document.querySelector("#sub").style.height = "100vh"; } if(window.scrollY === 0) { document.querySelector("#sub").style.height = "10px"; } }); javascript로 ..
2022.12.31