scrollIntoView({
behavior:auto //定义动画过渡效果"auto"或 "smooth" 之一。默认为 "auto"。
block:start//定义垂直方向的对齐, "start", "center", "end", 或 "nearest"之一。默认为 "start"。
inline:nearest//"start", "center", "end", 或 "nearest"之一。默认为 "nearest"。
})
用法:
/* 将页面中的 某个元素 滚动到顶部 */
document.querySelector('.app-container').scrollIntoView({
behavior: 'smooth'
})