Created
February 27, 2020 19:16
-
-
Save levenokk/f316001dbf6dcaaa7fcdd0dc5dcbcf42 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 elems = {}; | |
var scrolled = 0; | |
scrolled = $(window).scrollTop(); | |
for(var g in elems){ | |
if(scrolled > elems[g].top - $(window).height()/2 && scrolled < (elems[g].top + $(`#${g}`).height())){ | |
$(`[data-scroll]`).removeClass('active'); | |
$(`[data-scroll='${g}']`).addClass('active'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment