Created
July 20, 2017 14:09
-
-
Save DevShahidul/7911a737c06ef5f86782aebaf10c99d4 to your computer and use it in GitHub Desktop.
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
| var $header = $(".header-area"), | |
| $clone = $header.before($header.clone().addClass("fixedTop")); | |
| $(window).on("scroll", function() { | |
| var fromTop = $(window).scrollTop(); | |
| $("body").toggleClass("down", (fromTop > 300)); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment