Directions: Edit the bold text in the embeded code box above the change the colors and percent you want.
<style>
#myProgress {
width: 100%;
background-color: #ddd;
}
#myBar {
width: 30%;
height: 30px;
background-color: #484230;
text-align: center;
line-height: 30px;
color: white;
}
</style>
<div id="myProgress">
<div id="myBar">30%</div>
</div>
<br>
<button onclick="move()">See More</button>
<script>
var i = 0;
function move() {
if (i == 0) {
i = 1;
var elem = document.getElementById("myBar");
var width = 30;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
i = 0;
} else {
width++;
elem.style.width = width + "%";
elem.innerHTML = width + "%";
}
}
}
}
</script>