Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created October 8, 2012 17:15
Show Gist options
  • Save jlittlejohn/3853691 to your computer and use it in GitHub Desktop.
Save jlittlejohn/3853691 to your computer and use it in GitHub Desktop.
JS: Persistent Navigation
$(document).ready(function(){
$(window).scroll(function(){
var h = $('body').height();
var y = $(window).scrollTop();
if( y > (h*.03) && y < (h) ){
$("#header").addClass("compact fade-in-down");
} else {
$('#header').removeClass(' compact fade-in-down');
}
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment