Skip to content

Instantly share code, notes, and snippets.

@sealucky7
Created November 11, 2016 13:10
Show Gist options
  • Save sealucky7/3c3d4e4b26dcb16e740f7747ae4b2cfe to your computer and use it in GitHub Desktop.
Save sealucky7/3c3d4e4b26dcb16e740f7747ae4b2cfe to your computer and use it in GitHub Desktop.
var topLine = $('.top-line');
$(window).scroll(function (){
var top = $(this).scrollTop();
if (top > 120) {
topLine.addClass('fixed');
} else {
topLine.removeClass('fixed');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment