Created
January 18, 2017 09:33
-
-
Save VasylKyryliuk/9170a94447c94eca17f69c8b4e136512 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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