在開發(fā)中我們一定看過很多形形色色的各中特效,那么今天小編就來和大家分享有關于:“html5全屏背設置案例分享!”這方面的相關內(nèi)容,希望可以幫助到一些高入門的小伙們!
用什么代碼實現(xiàn)?不允許有白色底色產(chǎn)生,因為手機高度不一樣
設計圖要標準(750)確認是背景圖(通屏底圖)應用場景:移動端宣傳頁面或者活動頁面
錯誤的寫法:加到div中結合圖片設置min-height,但是頁面不會回彈
終極方案
html,body{
width:100%;
height:100%
}
body{
font-family: "華文細黑";
background:url("../img/Flyer-bg.png") no-repeat;
background-size: 100%;
}
一個hack方案解決垂直劇中問題
<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>
清除浮動:
.float-left {
float: left;
}
.float-right {
float: right;
}
.clear-fix:after {
display: table;
content: '';
clear: both;
}
以上就是有關于:“html5全屏背設置案例分享!”這方面的相關內(nèi)容,想必在閱讀完之后對于這方面的問題和使用也有了不少的了解!有感興趣的小伙伴們可以在W3Cschool中進行學習和了解!