0

ランダムな背景を作ろうとしています。

background:url(images/background/background-image.php) no-repeat fixed;
background-size: 100%; 

Firefox、Safari、IEで動作しますが、Chromeでは動作しません。

background-image.php

<?php

    $folder = '.';
    $extList = array();     
    $extList['gif'] = 'image/gif';  
    $extList['jpg'] = 'image/jpeg';     
    $extList['jpeg'] = 'image/jpeg';    
    $extList['png'] = 'image/png';  

    $img = null;

    if (substr($folder,-1) != '/') { 
        $folder = $folder.'/'; 
    }

    if (isset($_GET['img'])) {  
        $imageInfo = pathinfo($_GET['img']);    
        if ( isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) && file_exists( $folder.$imageInfo['basename'] ) ) {        
            $img = $folder.$imageInfo['basename'];  
        } 
    } else {    
        $fileList = array();    
        $handle = opendir($folder);     
        while ( false !== ( $file = readdir($handle) ) ) {      
            $file_info = pathinfo($file);       
            if (isset( $extList[ strtolower( $file_info['extension'] ) ] ) ) {                    
                $fileList[] = $file;        
            }   
        }   
        closedir($handle);
        if (count($fileList) > 0) {         
            $imageNumber = time() % count($fileList);       
            $img = $folder.$fileList[$imageNumber];     
        } 
    }

    if ($img!=null) {   
        $imageInfo = pathinfo($img);    
        $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];    
        header ($contentType);  
        readfile($img); 
    } else {    
        if ( function_exists('imagecreate') ) {         
            header ("Content-type: image/png");         
            $im = @imagecreate (100, 100) or die ("Cannot initialize new GD image stream");         
            $background_color = imagecolorallocate ($im, 255, 255, 255); 
            $text_color = imagecolorallocate ($im, 0,0,0);
            imagestring ($im, 2, 5, 5,  "IMAGE ERROR", $text_color); 
            imagepng ($im); 
            imagedestroy($im);
        }
    }                                                        
?>
4

2 に答える 2

0

実際の画像ファイルを生成するスクリプトを作成する代わりに。スクリプト参照をファイルへのリンクにします。たとえば、ディレクトリimagesに 10 個のランダムな画像がある場合、PHP のrand関数をscandir.

注:以下のコードはテストしていません。それは「大まかなアイデア」として機能します。

<?php
    $website_path = "http://www.example.com/".$GET['imgpath'];
    $list = scandir($_GET['imgpath']);
    if(count($list)>0){ //yes images in directory
        $random = rand(0,count($list));
        $random_path = $list[$random];
    }else               //no images in directory
        $random_path = "/images/error.php";
    $random_path = $website_path."/".$random_path;
    echo "background:url('$random_path');";
?>
background-size:100%;

background:url('...');また、 CSS スタイルを一重引用符で囲んでいないことにも注意してください。私があなたのコードを正しく読めば、複雑な問題を抱えている可能性があることがわかります。

于 2012-08-21T07:18:13.457 に答える
-1

CSS を PHP ファイルに入れ、変数を使用して背景画像のパスを一覧表示できますか?

background:url(<?=$bgimage?>) no-repeat fixed;

そして、PHP スクリプトが変数 $bgimage を出力するようにします。

省略形であることに注意してください

<?=$bgimage?> 

と言っているのと同じです

<?php echo $bgimage; ?>
于 2012-08-21T07:01:24.777 に答える