Skip to content

Instantly share code, notes, and snippets.

@khripunovpp
Created June 1, 2017 11:37
Show Gist options
  • Save khripunovpp/aa06b6a6a0f5b7b6819b9c5c74dd5fa4 to your computer and use it in GitHub Desktop.
Save khripunovpp/aa06b6a6a0f5b7b6819b9c5c74dd5fa4 to your computer and use it in GitHub Desktop.
simple-smooth-scrolling
$(document).ready(function(){
$(".topBar__menu a").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
window.location.hash = hash;
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment