Created
August 3, 2020 10:55
-
-
Save alx8437/74b48a013a9b10a825df4b2f4419b5d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Listen scroll | |
@HostListener('window:scroll', ['$event']) | |
test() { | |
let pos: number = document.documentElement.scrollTop + document.documentElement.offsetHeight; | |
let max: number = document.documentElement.scrollHeight; | |
if ((max - pos) < 200) { | |
console.log('scroll'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment