function drawSecond(second){
ctx.save();
ctx.beginPath();
ctx.fillStyle="#c14543";
var rad=2*Math.PI/60*second;
ctx.rotate(rad);
ctx.moveTo(2*rem,20*rem);
ctx.lineTo(-2*rem,20*rem);
ctx.lineTo(1,-r+40*rem);
ctx.lineTo(-1,-r+40*rem);
ctx.fill();
ctx.restore();
}
代码如上,画出的秒针为什么中间会有段空白??希望有大神可以解决一下