为了账号安全,请及时绑定邮箱和手机立即绑定

求解答!绘制背景不出现效果

var can;
var ctx;

var w;
var h;

function init(){    
    can=document.getElementById('canvas');
    ctx=can.getContext('2D');

    w=can.width;
    h=can.height;
    
    gameLoop();
};

document.body.onload=init;

function gameLoop(){    
    window.requestAnimFrame(gameLoop);
    drawBackground();
};

function drawBackground(){    
    ctx.fillStyle='#393550';
    ctx.fillRect(0,0,w,h);
};


正在回答

1 回答

可能是没有onload。http://blog.csdn.net/pearyangyang/article/details/45561115

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求解答!绘制背景不出现效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信