我注意到scrollIntoView
自从我上次看以来有一些新的选择。
即,block
和inline
。这两者有什么区别?我猜 {block: "start"}
会将元素的顶部与页面的顶部对齐,但我不确定这与 有什么不同inline
,或者您将如何同时使用这两个选项?
我注意到scrollIntoView
自从我上次看以来有一些新的选择。
即,block
和inline
。这两者有什么区别?我猜 {block: "start"}
会将元素的顶部与页面的顶部对齐,但我不确定这与 有什么不同inline
,或者您将如何同时使用这两个选项?
该block
选项决定元素将在其可滚动祖先的可见区域内垂直对齐的位置:
{block: "start"}
,元素在其祖先的顶部对齐。{block: "center"}
,元素在其祖先的中间对齐。{block: "end"}
,元素在其祖先的底部对齐。{block: "nearest"}
, 元素:
该inline
选项决定元素将在其可滚动祖先的可见区域内水平对齐的位置:
{inline: "start"}
,元素在其祖先的左侧对齐。{inline: "center"}
,元素在其祖先的中心对齐。{inline: "end"}
,元素在其祖先的右侧对齐。{inline: "nearest"}
, 元素:
两者block
和inline
可以同时使用以在一个动作中滚动到指定点。
查看以下代码段以了解每个代码段的工作原理。
片段:
/* ----- JavaScript ----- */
var buttons = document.querySelectorAll(".btn");
[].forEach.call(buttons, function (button) {
button.onclick = function () {
var where = this.dataset.where.split("-");
document.querySelector("div#a1").scrollIntoView({
behavior: "smooth",
block: where[0],
inline: where[1]
});
};
});
/* ----- CSS ----- */
body {
padding: 500px;
width: 2000px;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100;
}
div#a1 {
width: 1000px;
height: 300px;
background: url(//www.w3schools.com/css/trolltunga.jpg);
background-repeat: no-repeat;
}
<!----- HTML ----->
<header>
<button class="btn" data-where="start-start">T-L</button>
<button class="btn" data-where="start-center">T-C</button>
<button class="btn" data-where="start-end">T-R</button>
<button class="btn" data-where="center-start">C-L</button>
<button class="btn" data-where="center-center">C-C</button>
<button class="btn" data-where="center-end">C-R</button>
<button class="btn" data-where="end-start">B-L</button>
<button class="btn" data-where="end-center">B-C</button>
<button class="btn" data-where="end-end">B-R</button>
</header>
<div id = "a1"></div>