const launchDate = new Date("Jan 1, 2025 10:15:00").getTime();
const c = {
context: {},
values: {},
times: {}
};
function deg(d) {
return (Math.PI/180)*d-(Math.PI/180)*90;
}
function render() {
c.context.seconds.clearRect(0, 0, 200, 200);
c.context.seconds.beginPath();
c.context.seconds.strokeStyle = "#A9DEF9";
c.context.seconds.arc(100, 100, 90, deg(0), deg(6 * (60 - c.times.seconds)));
c.context.seconds.lineWidth = 20;
c.context.seconds.lineCap = "round";
c.context.seconds.stroke();
c.context.minutes.clearRect(0, 0, 200, 200);
c.context.minutes.beginPath();
c.context.minutes.strokeStyle = "#A8FBCA";
c.context.minutes.arc(100, 100, 90, deg(0), deg(6 * (60 - c.times.minutes)));
c.context.minutes.lineWidth = 20;
c.context.minutes.lineCap = "round";
c.context.minutes.stroke();
c.context.hours.clearRect(0, 0, 200, 200);
c.context.hours.beginPath();
c.context.hours.strokeStyle = "#EEBF96";
c.context.hours.arc(100, 100, 90, deg(0), deg(15 * (24 - c.times.hours)));
c.context.hours.lineWidth = 20;