Search
 
SCRIPT & CODE EXAMPLE
 

CSS

dynamic circle progress bar css

<div class="progress-bar position" data-percent="echo percentage;" data-duration="1000" data-color="red,green"></div>

or try this

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">

<h2>Dynamic Progress Bar with Labels</h2>
<p>Label outside of the progress bar:</p>

<div class="w3-light-grey">
  <div id="myBar" class="w3-container w3-green" style="height:24px;width:20%"></div>
  </div>

  <p id="demo">20%</p>

  <button class="w3-button w3-green" onclick="move()">Click Me</button> 
</div>

<script>
function move() {
  var elem = document.getElementById("myBar");   
  var width = 20;
  var id = setInterval(frame, 10);
  function frame() {
    if (width >= 100) {
      clearInterval(id);
    } else {
      width++; 
      elem.style.width = width + '%'; 
      document.getElementById("demo").innerHTML = width * 1  + '%';
    }
  }
}
</script>

</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Css :: how to bring a text in middle center of a tile css in anchor tag inline elements 
Css :: how to use animista css in html 
Css :: string interning in python 
Css :: Creating Nike logo with CSS 
Css :: webpack css not loading 
Css :: ubuntu phantomjs wrong paper size 
Css :: adding custom icons 
Css :: html or CSS background-color 
Css :: step 54 freecodecamp rwd 
Css :: ubuntu toggle always on top 
Css :: menu multiple colums batch 
Css :: press on button outline shoul not appear csss 
Css :: gh: stop using --force !!! 
Css :: scss modules 
Css :: style input type range shaded part only 
Css :: terminal download website source code 
Css :: responsive web design with html5 and css: develop future-proof responsive websites using the latest html5 and css techniques 
Css :: nginx proxy_pass pass css asset not loading 
Css :: userchrome.css location windows 10 
Css :: background css hachures 
Css :: css psedou content data 
Css :: show text in one line css 
Css :: prevent mailto href indexing 
Css :: how to use scss loops for icons 
Css :: css different rules on different devices 
Css :: Use pkg_* Tools To Manage Packages 
Css :: array_splice method 
Css :: Désactiver le hotlinking de vos images 
Css :: caching 
Css :: html and css 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =