示例:
background: url("=qq&nk=2065843899&s=5") no-repeat center center;
background-size: cover;
background-attachment: fixed;
background-color: #CCCCCC;
解决方案:
给body添加以下css样式
background: url("图片路径") no-repeat center center;/*加载背景图并使背景图不平铺 */
background-size: cover;/* 让背景图基于容器大小伸缩 */
background-attachment: fixed;/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-color: #CCCCCC;/* 设置背景颜色,背景图加载过程中会显示背景色 */
© 版权声明
THE END
暂无评论内容