可是
2 回答
刚毅87
TA贡献345条经验 获得超309个赞
function drawDigit (x,y,num,ctt) { ctt.fillStyle = 'rgb(0,105,153)'; for (var i = 0;i < digit[num].length;i++) { for (var j = 0;j < digit[num][i].length;j++) { if (digit[num][i][j] == 1) { ctt.beginPath(); ctt.arc(x + (randius + 1) * j * 2 + randius + 1,y + (randius + 1) * i * 2 + randius + 1,randius,0,Math.PI * 2,false); ctt.closePath(); ctt.fill(); } } } }
这是我写的,没发现有什么区别,,是不是你标点写错了.
添加回答
举报
0/150
提交
取消