使用Math.random在画布上的宾果球

时间:2016-11-11 09:55:02

标签: javascript html html5-canvas

我想在画布上绘制宾果球,使用Math.random显示一个随机数,我该如何将函数传递给它?

function drawCircle(ctx,x,y,r,colour,rn) {
    ctx.beginPath();
    ctx.arc(x,y,r,0,2*Math.PI);
    ctx.globalAlpha=0.5;
    ctx.fillStyle= colour;
    ctx.fill();
    ctx.stroke();
    ctx.fillStyle =  'rgba(0, 0, 0, 1.0)';
    ctx.font = 'italic 40pt Calibri ';
    ctx.fillText(rn, x-10, y+5);
}

0 个答案:

没有答案