添加CSS样式即可:
body{
background:url(image/background.jpg);
background-size:cover;
background-attachment:fixed;
background-color:#CCCCCC;
}
效果图:
(图片、代码资源点此链接免费下载)
详解
body {
background-image: url(image/background.jpg); /*加载背景图*/
background-position: center center; /* 背景图垂直、水平均居中 */
background-repeat: no-repeat; /* 背景图不平铺 */
background-attachment: fixed; /* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-size: cover; /* 让背景图基于容器大小伸缩(此条属性必须设置否则可能无效) */
background-color: #2a9d79; /* 设置背景颜色,背景图加载过程中会显示背景色 */
}
值 |
说明 |
CSS |
background-color |
指定要使用的背景颜色 |
1 |
background-position |
指定背景图像的位置 |
1 |
background-size |
指定背景图片的大小 |
3 |
background-repeat |
指定如何重复背景图像 |
1 |
background-origin |
指定背景图像的定位区域 |
3 |
background-clip |
指定背景图像的绘画区域 |
3 |
background-attachment |
设置背景图像是否固定或者随着页面的其余部分滚动 |
1 |
background-image |
指定要使用的一个或多个背景图像 |
1 |