Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created September 12, 2018 10:31
Show Gist options
  • Save Tsunamijaan/af52079ea3bdd9a031e41243f00757dd to your computer and use it in GitHub Desktop.
Save Tsunamijaan/af52079ea3bdd9a031e41243f00757dd 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");
}
});
var nav_offset_top = $('header').height()+10;
/*-------------------------------------------------------------------------------
Navbar
-------------------------------------------------------------------------------*/
//* Navbar Fixed
function navbarFixed(){
if ( $('.menu-nav').length ){
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= nav_offset_top ) {
$(".menu-nav").addClass("navbar_fixed");
} else {
$(".menu-nav").removeClass("navbar_fixed");
}
});
};
};
navbarFixed();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment