假设我有五个图像:
红色、绿色、蓝色、紫色和橙色.jpg
如何在刷新时随机更改这些更改并根据图像更改导航菜单颜色?
我确实尝试过,但我写的代码太可笑了,我从来没有把它放给任何人看。
编辑:请记住,这是取自另一个论坛,并针对我尝试做的事情进行了编辑。这是为测试而制作的。此外,在我获取文件的维护文件夹中,有一个名为 storage 的 .jpg 图像。这就是您在代码中看到它的原因。
<?php
//path to the image directory
$directory = "maintenance/";
//get all image files with a .jpg extension.
$images = glob("" . $directory . "*.jpg");
// get random image index
$rand_img = array_rand($images, 1);
// display the image
echo '<img src="'.$images[$rand_img].'" alt="" />';
?>
<div style="<?php
if ($rand_img == "storage.jpg")
echo "background: red;"; ?>height: 100%;width:100%;"></div>