안녕하세요. 오늘은 풀페이지 스크롤 이벤트 소스를 공유해드리겠습니다. fullPage.js를 통해 간단하게 구현이 가능하지만, 유료 라이센스입니다. 그럼 fullPage.js를 대체할 소스를 알려드리겠습니다. [HTML] Item 1 Item 2 Item 3 Item 4 [CSS] div { position: relative; height: 100vh; width: 100%; color: #fff; display: flex; align-items: center; justify-content: center; } div:nth-child(1){background: red} div:nth-child(2){background: yellow} div:nth-child(3){background: green} div..