Skip to content

Instantly share code, notes, and snippets.

@overstrides
Created March 3, 2016 09:29
Show Gist options
  • Select an option

  • Save overstrides/7fe7d0957e2c6972c99a to your computer and use it in GitHub Desktop.

Select an option

Save overstrides/7fe7d0957e2c6972c99a to your computer and use it in GitHub Desktop.
Scroll-menu in header
jQuery
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if ( (scroll >= 100) && ($(window).width() > '991') ) {
$(".b-scrollHeader").addClass("js-show");
} else {
$(".b-scrollHeader").removeClass("js-show");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment