<div id="myProgress">
<div id="myBar">
<div id="label"></div>
</div>
</div><br>
<div id="block"></div>
<button onclick="move(); this.style.display='none';" id="run" class="button primary small">Click Me</button>
<script>
function move() {
var elem = document.getElementById("myBar");
var width = 0;
var id = setInterval(frame, 100); // 600 это минута 3000-5 мин 12600-21 мин
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
document.getElementById("").innerHTML = width * 1 + '%';
}
}
}
</script>