const sub = this.scrollService.getScrollY().subscribe({ // 구독 시작
next: (scrollY) => { // 스크롤 좌표에 해당하는 페이지 넘버 1~8 리턴
const pageIndex = sections.findIndex((section) =>
this.checkVisible(section.nativeElement)
);
// 마지막 페이지일 경우 구독 중지
if (pageIndex === 8) {
sub.unsubscribe();
}
},
});