스크롤 페이징 (1) 썸네일형 리스트형 React 스크롤 페이징 구현 react-intersection-observer 리액트 프로젝트 개발을 하면서 목록에서 스크롤 페이징 개발 중 이슈가 생겼다. const [shopList, setShopList] = useState([]); const scrollHandle = () => { let scrollTop = Math.max(document.documentElement.scrollTop, document.body.scrollTop); let clientHeight = document.documentElement.clientHeight; let scrollHeight = Math.max(document.documentElement.scrollHeight, document.body.scrollHeight); if((scrollTop + clientHeight) > scroll.. 이전 1 다음