Notification texts go here Contact Us Buy Now!
Posts

Create a Scroll- Based Progress Bar with Percentage ?

Please wait 0 seconds...
Scroll Down and click on Go to Link for destination
Congrats! Link is Generated

Step:1

সর্বপ্রথমে নিচের CSS Code টি Copy করুন । AndThan Edit HTML এ গিয়ে <head> এর উপর নিচের Copy করা CSS Code টি Past করুন ।

<style>
#ATprogressbar{
  position: fixed;
  bottom: 63px;
  right: 16px;
  width:50px;
  height: 50px;
  border-radius: 50%;
  z-index: 99;
  display: grid;
  place-items: center;
}
#progressValue{
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;color: #000;
  display: grid;
  place-items: center;font-size: 12px;
}

</style>

Step:2

এরপর নিচের Javascript Code টিকে Copy করুন এবং Edit HTML এ গিয়ে </body>এর উপর নিচের Copy করা JS Code টি Past করুন ।

  <script>
  let ATscrollProgress = () =&gt;{
let scrollProgress = document.getElementById(&quot;ATprogressbar&quot;);
let progressValue = document.getElementById(&quot;progressValue&quot;);
let pos = document.documentElement.scrollTop;
let calcHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
let scrollvalue = Math.round( pos * 100 / calcHeight);
scrollProgress.style.background = ` conic-gradient(#00de00 ${scrollvalue}%, #fce6fa ${scrollvalue}%)`;
progressValue.textContent = `${scrollvalue}%`;


  }
  window.onscroll= ATscrollProgress;
  window.onload =ATscrollProgress;
</script>

Step:3

সবশেষে নিচের HTML Code টিকে Copy করুন এবং উপরের Javascript Code টি যেখানে Past করলেন ।তার উপর এই HTML Code টি Past করুন ।

<div id ='ATprogressbar' onclick="window.scrollTo(0,0)">
      <span id ='progressValue'></span>
    </div>
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.