設置背景圖片的兩種方式,並解決手機端背景圖片高度自適應問題

1 設置背景圖片的兩種方式:url

方式一: <img src="../img/10.jpg"/ class="back" id="Background">圖片

.back{
position: fixed;
width: 100%;
height: 100%;
display: block;
z-index: -100;
}it

方式二:div class="body" id="Background"></div>io

.body{
width: 100%;
height: 100%;
position: fixed;
z-index: -10;
background-image: url(../img/10.jpg);
background-repeat: no-repeat;
background-position: 0px 0px;
background-size: 100% 100%;
}function

2 解決手機端背景圖片自適應問題class

$(function(){
//設置背景圖片高度
$("#Background").height($("#Background").height());
});自適應

相關文章
相關標籤/搜索