Skip to content

Instantly share code, notes, and snippets.

@achisholm
Created April 7, 2014 21:45
Show Gist options
  • Save achisholm/10063883 to your computer and use it in GitHub Desktop.
Save achisholm/10063883 to your computer and use it in GitHub Desktop.
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 80) {
$(".nav").addClass("is-scrolled");
} else {
$(".nav").removeClass("is-scrolled");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment