Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Created February 15, 2015 11:20
Show Gist options
  • Save mzgreen/df58b5f74691ab030211 to your computer and use it in GitHub Desktop.
Save mzgreen/df58b5f74691ab030211 to your computer and use it in GitHub Desktop.
HideOnScrollExample - HidingScrollListener logic
if (scrolledDistance > HIDE_THRESHOLD && controlsVisible) {
onHide();
controlsVisible = false;
scrolledDistance = 0;
} else if (scrolledDistance < -HIDE_THRESHOLD && !controlsVisible) {
onShow();
controlsVisible = true;
scrolledDistance = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment