Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Last active August 29, 2015 14:21
Show Gist options
  • Save aviogreen/9fbb97db0f85b83f81e9 to your computer and use it in GitHub Desktop.
Save aviogreen/9fbb97db0f85b83f81e9 to your computer and use it in GitHub Desktop.
Animatie Scroll
$('[data-animate-scroll]').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);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment