Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Created June 16, 2015 08:35
Show Gist options
  • Save aviogreen/638e08d8acfe37f95393 to your computer and use it in GitHub Desktop.
Save aviogreen/638e08d8acfe37f95393 to your computer and use it in GitHub Desktop.
$('[data-animate-scroll]').each(function(index, el) {
$(this).on('click', function(event) {
var target = $( $(this).data('animate-scroll') );
var speed = $(this).data('animate-scroll-speed') ? $(this).data('animate-scroll-speed') : 800;
$('html, body').animate({
scrollTop: target.offset().top
}, speed);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment