Skip to content

Instantly share code, notes, and snippets.

@tinshade
Created October 25, 2020 08:42
Show Gist options
  • Save tinshade/02246dbd4db9143be8f03f1769d5c504 to your computer and use it in GitHub Desktop.
Save tinshade/02246dbd4db9143be8f03f1769d5c504 to your computer and use it in GitHub Desktop.
Get that smooth scroll rolling from your navbar to a section on your page/across all pages. Just include this after your jQuery.
$(function () {
$(window).on('scroll', function () {
if ( $(window).scrollTop() > 10 ) {
$('.navbar').addClass('active');
} else {
$('.navbar').removeClass('active');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment