在開(kāi)發(fā)中我們一定看過(guò)很多形形色色的各中特效,那么今天小編就來(lái)和大家分享有關(guān)于:“html5全屏背設(shè)置案例分享!”這方面的相關(guān)內(nèi)容,希望可以幫助到一些高入門(mén)的小伙們!
用什么代碼實(shí)現(xiàn)?不允許有白色底色產(chǎn)生,因?yàn)槭謾C(jī)高度不一樣
設(shè)計(jì)圖要標(biāo)準(zhǔn)(750)確認(rèn)是背景圖(通屏底圖)應(yīng)用場(chǎng)景:移動(dòng)端宣傳頁(yè)面或者活動(dòng)頁(yè)面
錯(cuò)誤的寫(xiě)法:加到div中結(jié)合圖片設(shè)置min-height,但是頁(yè)面不會(huì)回彈
終極方案
html,body{
width:100%;
height:100%
}
body{
font-family: "華文細(xì)黑";
background:url("../img/Flyer-bg.png") no-repeat;
background-size: 100%;
}
一個(gè)hack方案解決垂直劇中問(wèn)題
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,minimum-scale=1.0">
<title>緩存</title>
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/store.min.js"></script>
<style>
.parent{
width:200px;
height: 200px;
/* 以下屬性垂直居中 */
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
background-color: #aaa;
}
</style>
</head>
<body>
<div class="parent">111</div>
</body>
其他方案:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="Layer1" style="position:fixed; left:0px; top:0px; width:100%; height:100%">
<img src="https://www.qianbuxian.com/uploads/banners/20171214085954_shouye5.jpg" width="100%" height="100%"/>
</body>
</html>
清除浮動(dòng):
.float-left {
float: left;
}
.float-right {
float: right;
}
.clear-fix:after {
display: table;
content: '';
clear: both;
}
以上就是有關(guān)于:“html5全屏背設(shè)置案例分享!”這方面的相關(guān)內(nèi)容,想必在閱讀完之后對(duì)于這方面的問(wèn)題和使用也有了不少的了解!有感興趣的小伙伴們可以在W3Cschool中進(jìn)行學(xué)習(xí)和了解!