CSS实现背景图片响应式覆盖效果
/* 背景图片 */
background-image:url('../images/bg2.jpg');
/* 背景图片位置固定 */
background-attachment:fixed;
/* 背景不重复 */
background-repeat:no-repeat;
/* 背景位置居中 */
background-position:center center;
/* 背景覆盖整个viewport */
background-size:cover;
/* 当背景图片没有加载时的背景颜色 */
background-color:#fff;