绘制分针 绘制分针 ctx.save(); ctx.rotate( (Math.PI/30)*min + (Math.PI/1800)*sec ) // 计算分针角度并绘制图形 ctx.lineWidth = 10; ctx.beginPath(); ctx.moveTo(-28,0); ctx.lineTo(112,0); ctx.stroke(); ctx.restore();