1.页面
<div class=body></div>
2.样式
<style>
.body{
width: 100%;
height: 100vh; //页面高度铺满
background: url(../img.png) no-repeat; //背景图片
background-size: 100% 100%;//背景图片大小
background-attachment: fixed; /* 不设置的话页面滑动时,背景会不铺满*/
}
</style>
1.页面
<div class=body></div>
2.样式
<style>
.body{
width: 100%;
height: 100vh; //页面高度铺满
background: url(../img.png) no-repeat; //背景图片
background-size: 100% 100%;//背景图片大小
background-attachment: fixed; /* 不设置的话页面滑动时,背景会不铺满*/
}
</style>