Skip to content

Instantly share code, notes, and snippets.

@oboshto
Last active March 23, 2017 16:36
Show Gist options
  • Select an option

  • Save oboshto/0c0647920fe11963ba426e40d458d729 to your computer and use it in GitHub Desktop.

Select an option

Save oboshto/0c0647920fe11963ba426e40d458d729 to your computer and use it in GitHub Desktop.
A little progress bar for scrolling
function setProgress() {
let bar = document.querySelector('.js-content-bar'),
content = document.body,
max = content.scrollHeight - window.innerHeight,
progressValue = content.scrollTop / max * 100;
bar.setAttribute('value', progressValue);
}
window.addEventListener('scroll', setProgress);
window.addEventListener('resize', setProgress);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment