title | tags |
---|---|
bottomVisible |
browser,intermediate |
Returns true
if the bottom of the page is visible, false
otherwise.
- Use
scrollY
,scrollHeight
andclientHeight
to determine if the bottom of the page is visible.
const bottomVisible = () =>
document.documentElement.clientHeight + window.scrollY >=
(document.documentElement.scrollHeight || document.documentElement.clientHeight);
bottomVisible(); // true