Canvas 时钟数字
第三部分 - 绘制时钟数字
时钟需要数字。创建一个 JavaScript 函数来绘制时钟数字:
JavaScript:
function drawClock() { drawFace(ctx, radius); drawNumbers(ctx, radius); } function drawNumbers(ctx, radius) { ctx.font = radius * 0.15 + "px arial"; ctx.textBaseline = "middle"; ctx.textAlign = "center"; for(let num = 1; num < 13; num++){ let ang = num * Math.PI / 6; ctx.rotate(ang); ctx.translate(0, -radius * 0.85); ctx.rotate(-ang); ctx.fillText(num.toString(), 0, 0); ctx.rotate(ang); ctx.translate(0, radius * 0.85); ctx.rotate(-ang); } }
代码解释
将(绘图对象的)字体大小设置为半径的 15%:
ctx.font = radius * 0.15 + "px arial";
将文本对齐方式设置为打印位置的中间和中心:
ctx.textBaseline = "middle"; ctx.textAlign = "center";
将打印位置(12 个数字)计算到半径的 85%,并为每个数字旋转 (PI/6):
for(num = 1; num < 13; num++) { ang = num * Math.PI / 6; ctx.rotate(ang); ctx.translate(0, -radius * 0.85); ctx.rotate(-ang); ctx.fillText(num.toString(), 0, 0); ctx.rotate(ang); ctx.translate(0, radius * 0.85); ctx.rotate(-ang); }