html代码如下
<body>
/*此处内容省略*/
</body>
- 使用css设置背景图片并且铺满整个屏幕(不重复),代码如下
body{
/*设置背景图片*/
background-image: url("../images/background/back.jpg") ;
background-size: 100% 100%;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /*关键*/
background-position: center;
top:0;
left: 0;
width: 100%;
height: 100%;
min-width: 1600px;
z-index: -10;
zoom:1;
}
效果图
