Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/64462b00feabaf425127279a8538ecd8 to your computer and use it in GitHub Desktop.
Save realtomaszkula/64462b00feabaf425127279a8538ecd8 to your computer and use it in GitHub Desktop.
const scroll$ = fromEvent(window, 'scroll').pipe(
throttleTime(10),
map(() => window.pageYOffset),
pairwise(),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment