Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VasylKyryliuk/9170a94447c94eca17f69c8b4e136512 to your computer and use it in GitHub Desktop.
Save VasylKyryliuk/9170a94447c94eca17f69c8b4e136512 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var scrollTop = 0;
$(window).on('scroll', function() {
var scrollNow = $(window).scrollTop();
if(scrollNow > scrollTop && scrollNow > 20){
$('.header').addClass('setout');
} else {
$('.header').removeClass('setout');
}
scrollTop=scrollNow;
});
});
.setout{
top:-95px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment