반응형 infinite scroll1 IntersectionObserver 이용한 인피니티 스크롤 예제 IntersectionObserver는 대상 요소와 뷰포트의 교차 영역에 대한 변화를 비동기적으로 감지하도록 도와줍니다. 비동기로 실행되기 때문에 scroll 이벤트 요소에서 발생하는 이벤트가 연속으로 호출되는 문제가 없습니다. const io = new IntersectionObserver(callback, options) io.observe(element) // 대상 요소 감시 시작 const io = new IntersectionObserver(entries => { if (entries[0].intersectionRatio { entries.forEach(entry => { if (entry.isIntersecting) { add(); } }); }); io.observe(ele); functio.. 2020. 4. 3. 이전 1 다음 반응형