【前端】scrollIntoView 滑动到指定区域

Element.scrollIntoView() 方法让当前的元素滚动到浏览器窗口的可视区域内。
注意:页面(容器)可滚动时才有用!

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

参数
alignToTop: 布尔参数

  • true:相当于 scrollIntoViewOptions: {block: “start”, inline: “nearest”}
  • false:相当于scrollIntoViewOptions: {block: “end”, inline: “nearest”}

scrollIntoViewOptions: 对象

  • behavior 定义动画过度效果, ‘auto / smooth’ , 默认 ‘auto’
  • block 定义垂直方向的对齐, “start / center / end / nearest”。默认为 “start”
  • inline 定义水平方向的对齐, “start / center / end / nearest”。默认为 “nearest”

示例:

var element = document.getElementById("box");
element.scrollIntoView();
//禁止scrollIntoView
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});
element.scrollIntoView({
	behavior: "smooth",  // 平滑过渡
	block:    "start"  // 上边框与视窗顶部平齐。默认值
})

滚动到底部和顶部例子



HTML DOM scrollIntoView() 方法示例 - 基础教程(nhooo.com)






单击按钮以滚动到id="box"的元素的顶部或底部:

顶部的一些文本
底部的一些文本

你可能感兴趣的:(前端实用工具集,前端,css3,html)