Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created May 11, 2015 13:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathaningram/3675d231574174810909 to your computer and use it in GitHub Desktop.
Save nathaningram/3675d231574174810909 to your computer and use it in GitHub Desktop.
The Incredible Shrinking Header - jQuery
jQuery(function( $ ){
$(window).scroll(function () {
if ($(document).scrollTop() > 200 ) {
$('.builder-module-1-background-wrapper').addClass('shrink');
} else {
$('.builder-module-1-background-wrapper').removeClass('shrink');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment