问答详情
源自:3-3 Canvas静态的时分秒

为什么同样两个时针同样的参数 显示却不一样

function drawHour(hour){
    ctx.save();
    ctx.beginPath();
    var rad=2 * Math.PI / 12 * hour;
    ctx.rotate(rad);
    ctx.lineWidth=6;
    ctx.lineCap='round';
    ctx.moveTo(0,10);
    ctx.lineTo(0,-r/2);
    ctx.stroke();
    ctx.restore;
}

/*function drawMinute(minute)){
    ctx.save();
    ctx.beginPath();
    var rad=2 * Math.PI / 60 * hour;
    ctx.rotate(rad);
    ctx.lineWidth=3;
    ctx.lineCap='round';
    ctx.moveTo(0,10);
    ctx.lineTo(0,-r+18);
    ctx.stroke();
    ctx.restore;
}*/
drawBackground();
drawHour(4);
//drawMinute(3);
drawHour(1);

提问者:Freen247 2017-03-26 09:42

个回答

  • 郭小V先森
    2017-03-27 11:45:40
    已采纳

    drawBackground();
    drawHour(4);
    //drawMinute(3);
    drawHour(1);

    一个参数是4   一个参数是1

    显示的会一样?