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();
}
为什么这样实现秒钟,而不是像时针和分针那样?
是为了让秒针有个不同的效果,秒针尾部大些,秒针头部小些,看着更美观~。~