Skip to content

Instantly share code, notes, and snippets.

@alx8437
Created August 3, 2020 10:55
Show Gist options
  • Save alx8437/74b48a013a9b10a825df4b2f4419b5d0 to your computer and use it in GitHub Desktop.
Save alx8437/74b48a013a9b10a825df4b2f4419b5d0 to your computer and use it in GitHub Desktop.
// 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