Skip to content

Instantly share code, notes, and snippets.

@allusis
Created December 12, 2015 18:27
Show Gist options
  • Save allusis/bbe5cc69105a6316805e to your computer and use it in GitHub Desktop.
Save allusis/bbe5cc69105a6316805e to your computer and use it in GitHub Desktop.
Add CSS class on scroll
$(function(){
var shrinkHeader = 10;
$(window).scroll(function() {
var scroll = getCurrentScroll();
if ( scroll >= shrinkHeader ) {
$('body').addClass('scrolled');
}
else {
$('body').removeClass('scrolled');
}
});
function getCurrentScroll() {
return window.pageYOffset || document.documentElement.scrollTop;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment