我正在尝试在画布的屏幕上绘制一个空白的黑色矩形,以便可以开始制作乒乓球游戏,但是什么都看不到?
我已经检查过是否遇到任何错误,但是没有错
// select the canvas that we have made in our html file
const cvs = document.getElementById("pong");
const ctx = cvs.getContext("2d");
// draw our rectangle function
function drawRect(x, y, w, h, color) {
ctx.fillStyle = color;
ctx.fillRect(x,y,w,h);
}
drawRect(0, 0, cvs.wdith, cvs.height, "BLACK");
javascript:
rdp