console
window.onload = function(){
var canvas = document.getElementById('canvas'),
context = canvas.getContext('2d'),
centerX = canvas.width/2,
centerY = canvas.height/2,
rad = Math.PI*2/100,
speed = 0.1;
function blueCircle(n){
context.save();
context.strokeStyle = "#fff";
context.lineWidth = 5;
context.beginPath();
context.arc(centerX, centerY, 100 , -Math.PI/2, -Math.PI/2 +n*rad, false);
context.stroke();
context.closePath();
context.restore();
}
function whiteCircle(){
context.save();
context.beginPath();
context.lineWidth = 2;
context.strokeStyle = "red";
context.arc(centerX, centerY, 100 , 0, Math.PI*2, false);
context.stroke();
context.closePath();
context.restore();
}
function text(n){
context.save();
context.strokeStyle = "#fff";
context.font = "40px Arial";
context.strokeText(n.toFixed(0)+"%", centerX-25, centerY+10);
context.stroke();
context.restore();
}
(function drawFrame(){
window.requestAnimationFrame(drawFrame);
context.clearRect(0, 0, canvas.width, canvas.height);
whiteCircle();
text(speed);
blueCircle(speed);
if(speed > 100) speed = 0;
speed += 0.1;
}());
}
<canvas id="canvas" width="500" height="500" style="background:#000;"></canvas>
*{margin:0;padding:0;}
body{text-align:center;background-color:#000;}