코딩 기록/자바스크립트
scrollIntoView 예제 (자바스크립트)
kimyang-Sun
2020. 11. 13. 17:16
자바스크립트 알고리즘 (Programmers)See the Pen scrollIntoView 예제 by kimyangsun (@kimyangsun) on CodePen.
const button = document.querySelector("button");
const blue = document.querySelector(".blue");
button.addEventListener("click", () => {
blue.scrollIntoView({behavior: "smooth", block: "center", inline: "center"});
});