【前端】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"  // 上边框与视窗顶部平齐。默认值
})

滚动到底部和顶部例子

<!DOCTYPE html>
<html>
<title>HTML DOM scrollIntoView() 方法示例 - 基础教程(nhooo.com)</title>

<head>
<style>
#container {
  margin-top: 10px;
  height: 250px;
  width: 250px;
  overflow: auto;
  background-color: lightblue;
}

#box {
  position: relative;
  margin:500px;
  height: 800px;
  width: 2000px;
}
</style>
</head>
<body>

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

<div id="container">

   <div id="box">

      <div style="position:absolute; top:0;">顶部的一些文本</div>

      <div style="position:absolute; bottom:0;">底部的一些文本</div>

   </div>

</div> <br>

<button onclick="scrollToTop()">滚动到元素的顶部</button>

<button onclick="scrollToBottom()">滚动到元素的底部</button>

<script>
var elem = document.getElementById("box");

function scrollToTop() {
   elem.scrollIntoView(true);
}

function scrollToBottom() {
   elem.scrollIntoView(false);
}
</script>

</body>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值