Canvas draws how the scale of the clock rotates individually instead of the whole canvas.

how do I make the scale rotate separately? Instead of rotating the whole canvas? Canvas novice asks the boss to answer

Nov.30,2021

before drawing the scale
ctx.save ();
ctx.rotate (the angle you want to turn)
ctx.drawImage ctx.fill the process of drawing the scale
ctx.restore ()

then loop

Menu