FE/CSS

[ CSS ] 엘리먼트 기준 페이지 스크롤

HEON.D 2022. 4. 28. 18:48
var element = document.getElementById("box");

element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});

behavior
"auto", "smooth" 기본값은 "auto"

block
"start", "center", "end", "nearest" 기본값은 "start"

inline Optional
"start", "center", "end", "nearest" 기본값은 "nearest".

 

https://developer.mozilla.org/ko/docs/Web/API/Element/scrollIntoView

 

element.scrollIntoView - Web API | MDN

Element 인터페이스의 scrollIntoView() 메소드는 scrollIntoView()가 호출 된 요소가 사용자에게 표시되도록 요소의 상위 컨테이너를 스크롤합니다.

developer.mozilla.org