Skip to content

Instantly share code, notes, and snippets.

@levenokk
Created February 27, 2020 19:16
Show Gist options
  • Save levenokk/f316001dbf6dcaaa7fcdd0dc5dcbcf42 to your computer and use it in GitHub Desktop.
Save levenokk/f316001dbf6dcaaa7fcdd0dc5dcbcf42 to your computer and use it in GitHub Desktop.
Выделить елемент в шапке сколько проскроленно, как-то так
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