// 画背景的黑色的圆
function drawCircle() {
// 移动canvas的坐标轴原点
context.translate(r, r);
// 开始绘制路径
context.beginPath();
// 圆的宽度
context.lineWidth = 10;
// 画圆
context.arc(0, 0, r-5, 0, Math.PI*2, false);
// 路径画好后,进行描边
context.stroke();
}
function drawCircle() {
// 移动canvas的坐标轴原点
context.translate(r, r);
// 开始绘制路径
context.beginPath();
// 圆的宽度
context.lineWidth = 10;
// 画圆
context.arc(0, 0, r-5, 0, Math.PI*2, false);
// 路径画好后,进行描边
context.stroke();
}
2016-12-06
var canvas = document.getElementById('clock'),
context = canvas.getContext('2d'),
cw = canvas.width,
ch = canvas.height,
r = cw/2;
context = canvas.getContext('2d'),
cw = canvas.width,
ch = canvas.height,
r = cw/2;
2016-12-06
老師的分針是跳動的,沒有考慮秒針的影響
---------------------------哎,我的字為什麼是繁體字??????
---------------------------哎,我的字為什麼是繁體字??????
2016-12-05