美文网首页
scrollIntoView

scrollIntoView

作者: xueyueshuai | 来源:发表于2024-02-19 14:10 被阅读0次

scrollIntoView 方法将调用它的元素滚动到浏览器窗口的可见区域

element.scrollIntoView(); // 等同于element.scrollIntoView(true)
element.scrollIntoView(alignToTop); //布尔参数
element.scrollIntoView(scrollIntoViewOptions); //对象参数


scrollIntoViewOptions:
    behavior [可选]定义过渡动画。“auto”,“instant"或"smooth”。默认为"auto"。
    block [可选] “start”,“center”,“end"或"nearest”。默认为"center"。
    inline [可选] “start”,“center”,“end"或"nearest”。默认为"nearest"。

相关文章

网友评论

      本文标题:scrollIntoView

      本文链接:https://www.haomeiwen.com/subject/vydvadtx.html