dom节点平滑滚动到可视区域,顶部,底部

function scrollTo(element) {
   // element.scrollIntoView({ behavior: "smooth", block: "start" }) // 顶部
   // element.scrollIntoView({ behavior: "smooth", block: "end" }) // 底部
   // element.scrollIntoView({ behavior: "smooth"}) // 可视区域
}

scrollTo(document.getElementById('contain'))

posted on 2023-03-23 09:26  liuhao1992  阅读(152)  评论(0编辑  收藏  举报

导航