这个时钟是将钟盘的圆心点移到了 canvas 画布中心点.以方便后面的方位计算 ctx.translate(width/2,height/2); 现定义一个圆盘来显出这个时钟的基本位置 ctx.save() ctx.beginPath(); ctx.arc(0,0,r+90,0,2*Math.PI,false); ctx.lineWidth = 200; ctx.closePath(); ctx.drawImage(img,-r,-r,width,height); var grd = ctx.c…