1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <?php
header( 'content-type: text/css' );
$dir = "images/Fond_ecran/";
$Les_Fonds_Ecran = array();
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file != "." && $file != ".."){
$Les_Fonds_Ecran[] = $file;
}
}
closedir($dh);
}
}
$Aleatoire =rand(0, count($Les_Fonds_Ecran) - 1);
$Le_Fond_Ecran_Aleatoire = $dir . $Les_Fonds_Ecran[$Aleatoire];
?>
body {
margin: 0 auto;
padding: 0;
font: 12px Tahoma,Verdana,Arial,Helvetica, sans-serif;
background:url('<?php echo $Le_Fond_Ecran_Aleatoire;?>') fixed;
color: #1C6894;
} |
Partager