최신 웹 개발 튜토리얼
 

Canvas시계 바늘


파트 IV - 시계 바늘을 그립니다

시계는 손을 필요로한다. 시계 바늘을 그릴 수있는 자바 스크립트 함수를 만듭니다 :

자바 스크립트 :

function drawClock() {
    drawFace(ctx, radius);
    drawNumbers(ctx, radius);
    drawTime(ctx, radius);
}

function drawTime(ctx, radius){
    var now = new Date();
    var hour = now.getHours();
    var minute = now.getMinutes();
    var second = now.getSeconds();
    //hour
    hour=hour%12;
    hour=(hour*Math.PI/6)+(minute*Math.PI/(6*60))+(second*Math.PI/(360*60));
    drawHand(ctx, hour, radius*0.5, radius*0.07);
    //minute
    minute=(minute*Math.PI/30)+(second*Math.PI/(30*60));
    drawHand(ctx, minute, radius*0.8, radius*0.07);
    // second
    second=(second*Math.PI/30);
    drawHand(ctx, second, radius*0.9, radius*0.02);
}

function drawHand(ctx, pos, length, width) {
    ctx.beginPath();
    ctx.lineWidth = width;
    ctx.lineCap = "round";
    ctx.moveTo(0,0);
    ctx.rotate(pos);
    ctx.lineTo(0, -length);
    ctx.stroke();
    ctx.rotate(-pos);
}
»그것을 자신을 시도

예 설명

둘째,시, 분 얻기 위해 날짜를 사용합니다 :

var now = new Date();
var hour = now.getHours();
var minute = now.getMinutes();
var second = now.getSeconds();

시침의 각도를 계산하고, 그것의 길이 그릴 (50% of radius) 및 폭 (7% of radius) :

hour=hour%12;
hour=(hour*Math.PI/6)+(minute*Math.PI/(6*60))+(second*Math.PI/(360*60));
drawHand(ctx, hour, radius*0.5, radius*0.07);

분, 초 같은 기술을 사용합니다.

drawHand() 루틴은 설명을 필요로하지 않는다. 그냥 주어진 길이와 폭 선을 그립니다.