React 특정 엘리먼트로 스크롤 이동
특정 엘리먼트로 스크롤 이동시키는 방법 function Component() { const componentRef = useRef(null); const moveScroll = () => { componentRef.current?.scrollIntoView({ behavior: "smooth" }) } return ( 스크롤 타겟 엘리먼트 moveScroll}>스크롤 이동 );}
웹개발/프론트엔드
2024. 9. 13. 16:06