Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/85035241fc2dddea0a60b6159b00eae6 to your computer and use it in GitHub Desktop.
Save realtomaszkula/85035241fc2dddea0a60b6159b00eae6 to your computer and use it in GitHub Desktop.
const scroll$ = fromEvent(window, 'scroll').pipe(
throttleTime(10),
map(() => window.pageYOffset),
pairwise(),
map(([y1, y2]): Direction => (y2 < y1 ? Direction.Up : Direction.Down)),
distinctUntilChanged(),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment