第二部分 - 画一个钟面
时钟需要一个钟面。 创建一个JavaScript函数来绘制一个钟面:
JavaScript的:
function drawClock() {
drawFace(ctx, radius);
}
function drawFace(ctx, radius) {
var grad;
ctx.beginPath();
ctx.arc(0, 0, radius, 0, 2*Math.PI);
ctx.fillStyle = 'white';
ctx.fill();
grad = ctx.createRadialGradient(0,0,radius*0.95, 0,0,radius*1.05);
grad.addColorStop(0, '#333');
grad.addColorStop(0.5, 'white');
grad.addColorStop(1, '#333');
ctx.strokeStyle = grad;
ctx.lineWidth = radius*0.1;
ctx.stroke();
ctx.beginPath();
ctx.arc(0, 0, radius*0.1, 0, 2*Math.PI);
ctx.fillStyle = '#333';
ctx.fill();
}
试一试» 代码解释
绘制钟面创建drawFace()函数:
function drawClock() {
drawFace(ctx, radius);
}
function drawFace(ctx, radius) {
}
画白圈:
ctx.beginPath();
ctx.arc(0, 0, radius, 0, 2*Math.PI);
ctx.fillStyle = 'white';
ctx.fill();
创建一个径向渐变(95%和原始时钟半径的105%):
grad = ctx.createRadialGradient(0,0,radius*0.95, 0,0,radius*1.05);
创建3色停止时,与内,中间和圆弧的外边缘对应的:
grad.addColorStop(0, '#333');
grad.addColorStop(0.5, 'white');
grad.addColorStop(1, '#333');
颜色停止产生3D效果。
定义渐变的绘图对象的笔触样式:
ctx.strokeStyle = grad;
定义图形对象(半径的10%)的线宽度:
ctx.lineWidth = radius * 0.1;
绘制圆形:
ctx.stroke();
绘制时钟中心:
ctx.beginPath();
ctx.arc(0, 0, radius*0.1, 0, 2*Math.PI);
ctx.fillStyle = '#333';
ctx.fill();