암냥의 작업실

뒤로

사실 fullpage 스크롤 내 기준에선 매우 귀찮고 어려운 것 같다. 근데 찾아보다 보니 쉬운 방법들도 있는 것 같다. 이 코드는 오직 HTML과 CSS만으로 작성되었다.

일단 HTML의 구조는 다음과 같다.

<div id="fullpage">
	<div class="section">
		<1 />
	</div>
	<div class="section">
		<2 />
	</div>
	<div class="section">
		<3 />
		<Footer />
	</div>
</div>
html

CSS는 다음과 같다

#fullpage {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    scroll-behavior: smooth;
}
.section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
css

이렇게 완성되었다.

(스크롤백 이슈는 현재 사용중인 마우스 이슈입니다.)

CSS만으로 Full Page Scroll 구현하기
https://blog.imnya.ng/full-page-scroll
저자 암냥
게시일 2024년 09월 12일