Skip to content

Instantly share code, notes, and snippets.

@AlexKardone
Last active February 18, 2018 16:05
Show Gist options
  • Save AlexKardone/fb80f7ad4305ecafdbb26fd203958a67 to your computer and use it in GitHub Desktop.
Save AlexKardone/fb80f7ad4305ecafdbb26fd203958a67 to your computer and use it in GitHub Desktop.
Smooth scrolling (on scrolldown button)
$("body").on('click', '[href*="#"]', function(e){
var fixed_offset = 100;
$('html,body').stop().animate({ scrollTop: $(this.hash).offset().top - fixed_offset }, 1000);
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment