Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(window).on("scroll touchmove", function() {
- if (jQuery(document).scrollTop() >= jQuery(".gc-remove-class").position().top) {
- jQuery('#header-main').removeClass('header-white');
- };
- if (jQuery(document).scrollTop() >= jQuery(".gc-add-class").position().top) {
- jQuery('#header-main').addClass('header-white');
- };
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement