Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created December 28, 2017 09:49
Show Gist options
  • Save carolina-vallejo/d01330f2ddd14d3ade2fc17d60a69b69 to your computer and use it in GitHub Desktop.
Save carolina-vallejo/d01330f2ddd14d3ade2fc17d60a69b69 to your computer and use it in GitHub Desktop.
#javascript scroll detector waypoints.js
$('.scrolldetector').each(function() {
var $this = $(this);
var waypoint = new Waypoint({
element: $this.get(),
handler: function() {
$this.addClass('animate');
},
offset: '70%'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment