Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
btea committed Jul 28, 2024
1 parent b7314c5 commit a93e3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/zh-cn/web/api/element/scrolltop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ slug: Web/API/Element/scrollTop

一个双精度浮点值,表示元素当前从原点垂直滚动的像素数,其中正值表示元素向下滚动(以向底部显示更多内容)。如果元素根本没有向上或向下滚动,则`scrollTop`为 0。如果文档不是活动文档,则返回值为 0。如果文档在亚像素精度设备上呈现,则返回的值也是亚像素精度的,可能包含小数部分。

如果元素可以从初始包含块向上滚动,则`scrollTop`可能为负。例如,如果元素的{{cssxref("flex direction")}}是`column-reverse`,并且内容向上增长,那么当滚动条位于其最底部位置(在滚动内容的开始处)时,`scrollTop``0`然后当您向内容末尾滚动时,scrallTop 逐渐变负。
如果元素可以从初始包含块向上滚动,则`scrollTop`可能为负。例如,如果元素的{{cssxref("flex direction")}}是`column-reverse`,并且内容向上增长,那么当滚动条位于其最底部位置(在滚动内容的开始处)时,`scrollTop``0`然后当你向内容末尾滚动时,scrallTop 逐渐变负。

Safari 通过将`scrollTop`更新到最大滚动位置之外来响应过度滚动(除非禁用默认的“反弹”效果,例如将{{cssxref("overscroll-behavior")}}设置为`none`),而 Chrome 和 Firefox 则不会。例如,在 Safari 浏览器上,当元素已经位于顶部时继续向上滚动,`scrollTop`可能会变为负值。

Expand Down

0 comments on commit a93e3e0

Please sign in to comment.