简体   繁体   English

反应 canvas ctx.fillStyle 不起作用?

[英]React canvas ctx.fillStyle is not working?

在此处输入图像描述

I have tried the function up and down writing it.我已经尝试上下写function。 Tried using different colors.尝试使用不同的 colors。 Any more suggestion?还有什么建议吗? Refer to the screenshot picture of my codes and output.参考我的代码截图和output。

After the fillStyle you need to append a new line with following code.在填充样式之后,您需要使用以下代码 append 一个新行。

ctx.fillStyle = 'green';
ctx.fillRect(200, 100, 200, 200);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM