Skip to content

Instantly share code, notes, and snippets.

@Fanckler
Created March 31, 2018 12:23
Show Gist options
  • Save Fanckler/aff0b0089195278562c82309506d0178 to your computer and use it in GitHub Desktop.
Save Fanckler/aff0b0089195278562c82309506d0178 to your computer and use it in GitHub Desktop.
Scroll indicator
//scroll indicator
$(window).scroll(function() {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.querySelector('.scroll-bar span').style.height = scrolled+'%';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment