當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 背景圖片滾動css background-attachment屬性

背景圖片滾動css background-attachment屬性

2012/11/24 19:20:48作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例介紹】

背景圖片滾動css background-attachment屬性

當(dāng)網(wǎng)頁上設(shè)置背景圖片時,隨著滾動條的移動,背景圖片也會跟著一起移動,可以使用background-attachment屬性來控制背景圖片是否隨著Web頁面(當(dāng)內(nèi)容比瀏覽器的窗口大,滾動條處于激活狀態(tài)的時候)的內(nèi)容滾動。

【基本語法】

background-attachment:scroll  |  fixed

【語法介紹】

background-attachment屬性能夠提供一種非??岬男ЧDJ(rèn)狀態(tài)下,背景圖片隨著Web頁面的內(nèi)容滾動,這是background—attachment:scroll。如果以fixed代之,而且瀏覽器支持它,那么當(dāng)頁面滾動時背景圖片會固定在一個地方。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> </head> <style type="text/css"> .bj {  font-size: 13px;  line-height: 20px;  background-image: url(bb.jpg);  background-attachment: scroll;  background-repeat: no-repeat; } </style> <body> <table width="500" border="0" cellspacing="0" cellpadding="0">   <tr>     <td class="bj"><p>林間只有清脆的蟲鳴鳥唱,沒有風(fēng)卻感覺得到絲絲的涼意。我置身山間的云霧繚繞里,霧氣勾勒出我思緒,飄飄然,延綿無盡,深深一呼吸,品位一絲霧氣的清爽,我希望它不要散去。 師父說人生也是一陣迷霧,慢慢散去,慢慢清晰,無須慌亂,無須貪戀,無須奢望,因為它已經(jīng)在那里等你了,靜靜地等著你,這就是宿命。</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p>&nbsp;</p></td>   </tr> </table> </body> </html>

【代碼分析】

在瀏覽器中預(yù)覽效果,如圖所示,可以看到拖動瀏覽器的滾動條,網(wǎng)頁的內(nèi)容移動了,背景圖像也隨著移動。

背景圖片滾動屬性background-attachment運(yùn)行效果

 【素材及源碼下載】

請點擊:背景圖片滾動屬性background-attachment 下載本實例相關(guān)素材及源碼

 

標(biāo)簽: 背景圖片  滾動  屬性