Skip to content

Instantly share code, notes, and snippets.

@adamkudrna
Created December 17, 2014 00:32
Show Gist options
  • Save adamkudrna/4be612ee656e72686a7c to your computer and use it in GitHub Desktop.
Save adamkudrna/4be612ee656e72686a7c to your computer and use it in GitHub Desktop.
Animated scrolling
// Scrolling
function scrollToElement(element, offset) {
var offsetTop = $(element).offset().top;
if (arguments.length === 2) {
offsetTop += offset;
}
$('html, body').animate({ scrollTop: offsetTop }, 500);
}
// Scroll to content
$('.js-scroll').click(function(e) {
e.preventDefault();
scrollToElement($(this).attr('href'), -40);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment