Skip to content

Instantly share code, notes, and snippets.

@ddneat
Created March 13, 2015 22:36
Show Gist options
  • Save ddneat/ebfb7653312ec12250a0 to your computer and use it in GitHub Desktop.
Save ddneat/ebfb7653312ec12250a0 to your computer and use it in GitHub Desktop.
scrollTop
// if you would like to use the custom easing you need to use following dependency
// http://gsgd.co.uk/sandbox/jquery/easing/
$('.scroll').on('click', 'a', function(event){
event.preventDefault();
var target = $(this).attr('href');
$('html, body').animate({
scrollTop: $(target).offset().top - $('header').height()
}, 700, 'easeInOutCubic' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment