本文主要和大家介紹CSS實現網頁背景圖片自適應全螢幕的方法的相關資料,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。
網頁背景自適應全螢幕.PNG
一張清晰漂亮的背景圖片能給網頁加分不少,設計師也常會給頁面的背景使用大圖,我們既不想圖片因為不同解析度圖片變形,也不希望當在大螢幕的情況下,背景有一塊露白,簡而言之,就是實現能自適應螢幕大小又不會變形的背景大圖,而且背景圖片不會隨著捲軸滾動而滾動。
以下是用CSS實作的方法:
HTML:
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>title</title> </head> <body> <p class="wrapper"> <!--背景图片--> <p id="web_bg" style="background-image: url(./img/bg.jpg);"></p> <!--其他代码 ... --> </p> </body> </html>
CSS:
##
#web_bg{ position:fixed; top: 0; left: 0; width:100%; height:100%; min-width: 1000px; z-index:-10; zoom: 1; background-color: #fff; background-repeat: no-repeat; background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-position: center 0; }
position:fixed; top: 0; left: 0;
width:100%; height:100%; min-width: 1000px;
z-index:-10;
background-repeat: no-repeat;
#
background-size: cover; -webkit-background-size: cover; -o-background-size: cover;
background-position: center 0;
CSS3教學(5):網頁背景圖片_css3_CSS_網頁製作
JS實作讓網頁背景圖片斜向移動的方法_javascript技巧
網頁背景圖片全螢幕設定_html/css_WEB-ITnose
以上是CSS實現網頁背景圖片自適應全螢幕詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!