Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/f777a8398632fe9b6196 to your computer and use it in GitHub Desktop.
Save billerickson/f777a8398632fe9b6196 to your computer and use it in GitHub Desktop.
// Adjust header when scrolled
// Author: Bill Erickson
// URL: http://www.billerickson.net/code/adjust-header-scrolled/
jQuery(document).ready(function($){
$(".site-header").after('<div class="bumper"></div>');
$(window).scroll(function () {
if ($(document).scrollTop() > 1 ) {
$('.site-header').addClass('shrink');
} else {
$('.site-header').removeClass('shrink');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment