gpt4 book ai didi

javascript - 不能直接在 fillStyle 中生成随机数吗?

转载 作者:行者123 更新时间:2023-11-29 22:30:23 27 4
gpt4 key购买 nike

也许我没有正确使用 Math.random(),尽管我不知道我做错了什么:

ctx.fillStyle = "rgb(Math.floor(Math.random()*256),Math.floor(Math.random()*256),Math.floor(Math.random()*256))";
ctx.fillRect(0,0,canvas.width,canvas.height);

最佳答案

fillStyle 是一个字符串。您需要使用字符串连接来执行您想要的操作。像这样:

ctx.fillStyle = "rgb("+
Math.floor(Math.random()*256)+","+
Math.floor(Math.random()*256)+","+
Math.floor(Math.random()*256)+")";
ctx.fillRect(0,0,canvas.width,canvas.height);

关于javascript - 不能直接在 fillStyle 中生成随机数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7266261/

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