Skip to content

Instantly share code, notes, and snippets.

@mdemrs
Forked from pavelbinar/fixed-nav.js
Created March 12, 2019 12:58
Show Gist options
  • Save mdemrs/358f0e40c2b2f18adc3edf580c1b9eb3 to your computer and use it in GitHub Desktop.
Save mdemrs/358f0e40c2b2f18adc3edf580c1b9eb3 to your computer and use it in GitHub Desktop.
JavaScript: Fixed top nav after certain distance from top
// Fixed nav after certain point
// Show the fixed-strip after reachinch 240px from the top
$(window).scroll(function () {
if ($(this).scrollTop() > 240) {
$('.fixed-strip').css('visibility', 'visible');
} else {
$('.fixed-strip').css('visibility', 'hidden');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment