PHP 动态CSS背景图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 动态CSS背景图像相关的知识,希望对你有一定的参考价值。

<? header("Content-type: text/css"); ?>

/* all your other CSS rules can go here too! */

h2 {
display:block;
width:400px;
height:30px;
background-repeat:no-repeat;
}

h2 span {
display:none;
}

<?
$path = 'headers/';
$dir = $_SERVER['DOCUMENT_ROOT'] . $path;
if ($handle = opendir($dir)) {
    while (false !== ($file = readdir($handle))) {
        if ($file != "." && $file != "..") {
			$class = current(explode('.', $file));
			echo 'h2.' . $class . ' { ' . "\n";
			echo 'background-image:url("' . $path . $file . '"); ' . "\n";
			echo '}' . "\n\n";
		}
    }
    closedir($handle);
}
?>

以上是关于PHP 动态CSS背景图像的主要内容,如果未能解决你的问题,请参考以下文章

在 css 背景图像中转义 PHP,或 css 语法问题?

如何使背景图像跨越每个表格行并使用 HTML 和/或 CSS 动态调整大小?

css 动态背景 - 将Javascript放在页脚和CSS中。确保所有图像文件都以Photoshop文档中的名称命名

css 动态背景 - 将Javascript放在页脚和CSS中。确保所有图像文件都以Photoshop文档中的名称命名

css 动态背景 - 将Javascript放在页脚和CSS中。确保所有图像文件都以Photoshop文档中的名称命名

css 动态背景 - 将Javascript放在页脚和CSS中。确保所有图像文件都以Photoshop文档中的名称命名