我正在尝试制作一个简单的游戏,但是如果我需要一个弹跳球的图像,那么我该怎么做呢?我正在这样做——
function draw() {
ctx.clearRect(0, 0, 300, 300);
if (ctx.getContext) {
Snooker = new Image();
Snooker.onload = loadingComplete;
Snooker.src = "http://www.wpclipart.com/toys/balls/red_snooker_ball.png";
}
x += dx;
y += dy;
bounce();
}
和->
function init() {
var ctx = document.getElementById("canvas");
return setInterval(draw, 10);
}
现在画布是空白的。
这是小提琴链接- http://jsfiddle.net/stackmanoz/QcLTw/1/
我想添加的图像而不是这个简单的球 - http://www.wpclipart.com/toys/balls/red_snooker_ball.png