Skip to content

Instantly share code, notes, and snippets.

@mdsohelmia
Created April 20, 2019 17:58
Show Gist options
  • Save mdsohelmia/9d2a83cea4c61f7c87b5d900c6433b4d to your computer and use it in GitHub Desktop.
Save mdsohelmia/9d2a83cea4c61f7c87b5d900c6433b4d to your computer and use it in GitHub Desktop.
$(window).on('scroll',function() {
var scroll = $(window).scrollTop();
if (scroll < 245) {
$(".header-middle").removeClass("scroll-header");
}else{
$(".header-middle").addClass("scroll-header");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment