[Javascript] 원하는 위치로 스크롤 이동하기
1. 기본 이동 window.scrollTo(X, Y); x는 가로좌표, y는 세로좌표를 적어준다. ex) 2. 부드럽게 이동 window.scrollTo({top:y, left:x, behavior:'smooth'}); 마찬가지로 x에는 가로좌표, y에는 세로좌표를 적어주면 된다. ex) 좌표 구하는법 const rect = document.querySelector('div').getBoundingClientRect(); console.log(rect); rect 출력된모습 ▽ { "x": 0, "y": -700, "width": 1903, "height": 2497, "top": -700, "right": 1903, "bottom": 1797, "left": 0 } x : 브라우저 창기준 x 좌표 y..
2023. 7. 18.