39

我注意到scrollIntoView自从我上次看以来有一些新的选择。

即,blockinline。这两者有什么区别?我 {block: "start"}会将元素的顶部与页面的顶部对齐,但我不确定这与 有什么不同inline,或者您将如何同时使用这两个选项?

4

1 回答 1

92

block选项决定元素将在其可滚动祖先的可见区域内垂直对齐的位置:

  • 使用{block: "start"},元素在其祖先的顶部对齐。
  • 使用{block: "center"},元素在其祖先的中间对齐。
  • 使用{block: "end"},元素在其祖先的底部对齐。
  • 使用{block: "nearest"}, 元素:
    • 如果您当前位于其祖先的下方,则在其祖先的顶部对齐。
    • 如果您当前位于其祖先之上,则在其祖先的底部对齐。
    • 保持原样,如果它已经在视图中。

inline选项决定元素将在其可滚动祖先的可见区域内水平对齐的位置:

  • 使用{inline: "start"},元素在其祖先的左侧对齐。
  • 使用{inline: "center"},元素在其祖先的中心对齐。
  • 使用{inline: "end"},元素在其祖先的右侧对齐。
  • 使用{inline: "nearest"}, 元素:
    • 如果您当前在其祖先的右侧,则在其祖先的左侧对齐。
    • 如果您当前在其左侧,则在其祖先的右侧对齐。
    • 保持原样,如果它已经在视图中。

两者blockinline可以同时使用以在一个动作中滚动到指定点。

查看以下代码段以了解每个代码段的工作原理。

片段:

/* ----- 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>

于 2018-02-06T04:56:37.790 回答