gpt4 book ai didi

javascript - .fillStyle 不起作用,我的代码有问题吗?或者 Canvas 的 .fillStyle 的任何替代品?

转载 作者:行者123 更新时间:2023-12-03 01:41:02 26 4
gpt4 key购买 nike

var canvas
var canvasContext

window.onload = function() {
console.log("Hello World");
canvas = document.getElementById('gameCanvas');
canvasContext = canvas.getContext('2d');
canvasContext.fillStyle = 'black';
canvasContext.fillRect(0, 0 canvas.width, canvas.height);
}
<canvas id="gameCanvas" width="800" height="600"></canvas>

我不明白为什么 canvasContext.fillStyle 不起作用。对于为什么它不起作用或该功能的替代品有什么建议吗?

最佳答案

似乎正在工作。也许 fillRect 中缺少逗号?

    var canvas
var canvasContext

window.onload = function(){
console.log("Hello World");
canvas = document.getElementById('gameCanvas');
canvasContext = canvas.getContext('2d');
canvasContext.fillStyle = 'black';
canvasContext.fillRect(0,0,canvas.width,canvas.height);
}
<canvas id ="gameCanvas" width="40"height="40"></canvas>

关于javascript - .fillStyle 不起作用,我的代码有问题吗?或者 Canvas 的 .fillStyle 的任何替代品?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50845762/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com