أحدث البرامج التعليمية وتطوير الشبكة
 

Canvas أرقام مدار الساعة


الجزء الثالث - رسم الأرقام ساعة

على مدار الساعة تحتاج أرقام. إنشاء دالة جافا سكريبت لرسم الأرقام مدار الساعة:

جافا سكريبت:

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

function drawNumbers(ctx, radius) {
    var ang;
    var num;
    ctx.font = radius*0.15 + "px arial";
    ctx.textBaseline="middle";
    ctx.textAlign="center";
    for(num= 1; num < 13; num++){
        ang = num * Math.PI / 6;
        ctx.rotate(ang);
        ctx.translate(0, -radius*0.85);
        ctx.rotate(-ang);
        ctx.fillText(num.toString(), 0, 0);
        ctx.rotate(ang);
        ctx.translate(0, radius*0.85);
        ctx.rotate(-ang);
    }
}
انها محاولة لنفسك »

وأوضح مثال

ضبط حجم الخط (الكائن الرسم) إلى 15٪ من نصف قطر:

ctx.font = radius*0.15 + "px arial";

ضبط محاذاة النص إلى الوسط ووسط موضع الطباعة:

ctx.textBaseline="middle";
ctx.textAlign="center";

حساب موضع الطباعة (12 أرقام) إلى 85٪ من نصف قطر، استدارة (PI / 6) لكل رقم:

for(num= 1; num < 13; num++) {
    ang = num * Math.PI / 6;
    ctx.rotate(ang);
    ctx.translate(0, -radius*0.85);
    ctx.rotate(-ang);
    ctx.fillText(num.toString(), 0, 0);
    ctx.rotate(ang);
    ctx.translate(0, radius*0.85);
    ctx.rotate(-ang);
}