我需要我的管理員才能更改/更新我網站的橫幅。如何動態更改CSS
這是橫幅代碼
<div class="containertop">This depends on the background of the div</div>
,這是該
.containertop
{
width:1000px;
height:300px;
**background:url(../images/1.png) no-repeat center;**
margin: 0 auto;
margin-top: 40px;
}
的CSS我想發生相同Facebook的封面照片。 當新的橫幅上傳時,CSS將會被更新(類似的)。 但是,當然,必須從數據庫中提取新的橫幅。
所以我想到的是,CSS會變成這個樣子:
獲取已保存的旗幟源,然後:
background:url(<?php echo $row['image']; ?>);
,但我可以做PHP連接數據庫(包括「dbname.php ')在CSS txt內?
您可以使用JavaScript或jQuery動態更改它。 – 2012-07-13 14:05:42
在標籤本身上使用內聯css會更容易 - 將'background:url(../ images/1.png)no-repeat center;'作爲樣式元素移動到標籤中,然後在PHP中進行設置。這裏不需要JS。 – 2012-07-13 14:06:34
http://www.coolphptools.com/dynamic_css檢查此 – 2012-07-13 14:06:47