已采纳回答 / Ellision
1、原代码:var don=document.getElementByID("clock2"); 修改后:var dom = document.getElementById("clock2");2、原代码:ctxfill();;修改后:cxt.fill();
2017-05-13
最新回答 / 慕码人1194994
forEach()把函数从头到尾遍历一遍。有三个参数分别是 数组元素 数组元素的索引 数组本身 (如果是一个参数就是数组元素)http://www.jb51.net/article/69103.htm
2017-04-29
最新回答 / 照顾好自己
下面的代码是按照秒针rotate:function drawHour(hour,minute,second){
ctx.save();
ctx.beginPath();
var rad=2*Math.PI/12*hour;
var srad=2*Math.PI/60/60*second; var mrad=2*Math.PI/12/60*minute+srad;
ctx.rotate(rad+mrad);
ctx.lineWidth=6;
ct...
2017-03-12