Skip to content

Instantly share code, notes, and snippets.

@jdtdesigns
Created November 11, 2015 07:03
Show Gist options
  • Save jdtdesigns/fbbdecbfc0e9b82e506f to your computer and use it in GitHub Desktop.
Save jdtdesigns/fbbdecbfc0e9b82e506f to your computer and use it in GitHub Desktop.
$window = $(window);
$window.on('scroll', _stickyNav);
function _stickyNav() {
y = $(this).scrollTop();
if ( y >= 5 ) {
$header.addClass('header-scroll');
} else {
$header.removeClass('header-scroll');
}
}
.header-scroll {
background: rgba(37, 37, 37, .98);
padding: 8px 1%;
transition: padding .2s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment