原文用 JavaScript 实现了滚动到页面指定位置的功能。
以下这行代码什么意思?
destinationOffsetToScroll 似乎是要滚动的距离,但看不出 documentHeight - destinationOffset < windowHeight 这个条件表达了什么。
const destinationOffsetToScroll = Math.round(documentHeight - destinationOffset < windowHeight ? documentHeight - windowHeight : destinationOffset);
原文在: https://pawelgrzybek.com/page-scroll-in-vanilla-javascript/
1
xiao109 2022-01-05 09:03:14 +08:00
三元表达式嘛。如果 documentHeight - destinationOffset 小于 windowHeight 就返回 documentHeight - windowHeight ,否则返回 destinationOffset 。
|
2
he2020 OP @xiao109 知道是三元表达式啊,问题是 documentHeight - destinationOffset < windowHeight 这个判断是什么意思?
|
3
iidear2015 2022-01-05 14:21:30 +08:00
要滚到的位置是否在视窗内吧
|
4
he2020 OP @iidear2015 要判断这个做什么
|