我正在尝试学习如何编码,而不是确定从哪里开始,
我想制作一个78像素×78像素的盒子 然后让它们具有不同的随机颜色。
请问如何在html或php网页上执行此操作?
不确定从哪里开始。
感谢您的帮助和时间。
答案 0 :(得分:0)
有很多方法可以解决这个问题,一个简单的方法是使用表格和rand() PHP函数来设置每个background的cell:
<?php
$size=78;
$cellsize=4;
$table="<table cellpadding='$cellsize' cellspacing='1'";
for($y=0;$y<$size;$y++) {
$table.="<tr>";
for($x=0;$x<$size;$x++) {
// Random color
$r=rand(0,255);
$g=rand(0,255);
$b=rand(0,255);
$table.="<td style='background-color:rgb($r,$g,$b)'></td>";
}
$table.="</tr>\n";
}
$table.="</table>";
print $table;
?>
此代码生成HTML表。您可以使用其他系统(例如GD)。