Created
March 3, 2016 09:29
-
-
Save overstrides/7fe7d0957e2c6972c99a to your computer and use it in GitHub Desktop.
Scroll-menu in header
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
| 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