Created
March 31, 2018 12:23
-
-
Save Fanckler/aff0b0089195278562c82309506d0178 to your computer and use it in GitHub Desktop.
Scroll indicator
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
//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