Skip to content

Instantly share code, notes, and snippets.

@samuelkobe
Created June 27, 2014 03:39
Show Gist options
  • Save samuelkobe/acbf3eb6734bf7bb762a to your computer and use it in GitHub Desktop.
Save samuelkobe/acbf3eb6734bf7bb762a to your computer and use it in GitHub Desktop.
javascript.js
$(document).ready(function(){
$(window).bind('scroll', function() {
var navHeight = $( window ).height() - 50;
if ($(window).scrollTop() > (navHeight)*.75) {
$('nav').addClass('fixed').animate ({
top: "0px",
}, 400 );
}
else {
$('nav').removeClass('fixed').css ({
top: "-50px",
}, 400 );
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment