不明白秒针为什么要这样实现?
function drawSecond(second){
cxt.save();
cxt.beginPath();
cxt.fillStyle = '#c14543';
var rad = 2 * Math.PI / 60 * second;
cxt.rotate(rad);
cxt.moveTo(-2* rem,20* rem);
cxt.lineTo(2* rem,20* rem);
cxt.lineTo(1,-r+18* rem);
cxt.lineTo(-1,-r+18* rem);
cxt.fill();
cxt.restore();
}
为什么这样实现秒钟,而不是像时针和分针那样?