Created
November 11, 2016 13:10
-
-
Save sealucky7/3c3d4e4b26dcb16e740f7747ae4b2cfe 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 topLine = $('.top-line'); | |
$(window).scroll(function (){ | |
var top = $(this).scrollTop(); | |
if (top > 120) { | |
topLine.addClass('fixed'); | |
} else { | |
topLine.removeClass('fixed'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment