Skip to content

Instantly share code, notes, and snippets.

@djanix
Created June 16, 2014 20:45
Show Gist options
  • Save djanix/f0234c5a50b3eb4009f4 to your computer and use it in GitHub Desktop.
Save djanix/f0234c5a50b3eb4009f4 to your computer and use it in GitHub Desktop.
$('#item').waypoint(function(direction) {
if (direction != 'down') { return; }
// do stuff
}, { offset: '50%' });
$('#item').waypoint(function(direction) {
if (direction != 'up') { return; }
// do stuff
}, { offset: '-50%' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment