首先要感谢老师!但是代码还是要写得严谨啊!照着老师的代码敲就是没有预期的效果,问题在
<canvas id="clock" width=200px height=200px></canvas>定义宽高不要用style....
<canvas id="clock" width=200px height=200px></canvas>定义宽高不要用style....
2017-11-28
最新回答 / Ma91c
for(var i = 0;i < 60 ;i++){var rad=2*Math.PI/60*i;var x=Math.cos(rad)*(r-18*rem);var y=Math.cos(rad)*(r-18*rem);ctx.beginPath();------------ 分割线 -------------上面是画刻度点的部分,y = Math.sin(rad) * (r - 18 * rem); 而不是cos
2017-11-16