如何将十六进制代码放入Khan Academy的JavaScript中?我想把它变成填充颜色,但我找不到合适的命令。我尝试了许多人们也尝试过的东西,但似乎没有人在可汗学院工作。请帮忙。
答案 0 :(得分:0)
您将必须从十六进制转换为十进制。使用KA上的颜色功能,您将获得三个十进制数字,并用逗号分隔代表十六进制代码。例如:
0xFFFFFF
将会:
color(255,255,255);
KA中的颜色命令:
background(r, g, b)
Set the background color
fill(r, g, b)
Set the fill color for shapes
noFill()
Turn off fill for shapes
stroke(r, g, b)
Set the outline color for shapes
strokeWeight(thickness)
Change the thickness of lines and outlines
noStroke()
Turn off outlines for shapes
color(r, g, b)
Store a color in a variable
blendColor(c1, c2, MODE)
Blend two colors together
lerpColor(c1, c2, amount)
Find color between 2 colors```