Progress Bar with Html+CSS+JS

PHOTO EMBED

Sun Dec 17 2023 19:43:23 GMT+0000 (Coordinated Universal Time)

Saved by @Zohaib77 #html #css #javascript

//HTML

<div id="progress-bar"></div>



//CSS

#progress-bar {
  height: 5px;
  background-color: grey;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}




//JS

const progressBar = document.getElementById('progress-bar');

window.addEventListener('scroll', function() {
  const scrollTop = window.scrollY;
  const documentHeight = document.documentElement.scrollHeight;
  const windowHeight = window.innerHeight;
  const progress = scrollTop / (documentHeight - windowHeight);
  progressBar.style.width = `${progress * 100}%`;
});

content_copyCOPY

this a progress bar comes on top as we scroll

https://g.co/bard/share/1647430116d0