Skip to content

Instantly share code, notes, and snippets.

@muks999
Created June 14, 2018 00:50
Show Gist options
  • Save muks999/0c31989b965083c2f98c06f448a0de9b to your computer and use it in GitHub Desktop.
Save muks999/0c31989b965083c2f98c06f448a0de9b to your computer and use it in GitHub Desktop.
Fix Header
function headerScroll() {
if ($(window).scrollTop() > 150) {
$('header').addClass('slicky');
} else {
$('header').removeClass('slicky');
}
}
headerScroll();
$(window).scroll(function () {
headerScroll();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment