在我的网站上使用封面时遇到问题。封面是由覆盖整个浏览器窗口的图像组成的页面,在所有浏览器中都正确加载,但是当我向下滚动然后再次向上滚动时,图像会失真(仅在使用 firefox 时)。最简单的解释方法就是显示网站:http ://arkad.tlth.se 。背景图像的 CSS 如下:
.site-wrapper-inner {
display: table-cell;
vertical-align: top;
background: url(http://arkad.tlth.se/wp-content/uploads/2014/05/cover-image.jpg) no-repeat center fixed transparent;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
如果您想了解有关代码的更多信息,请检查元素。我尝试使用它来代替它,但现在滚动效果消失了。背景图像被其他内容滚动的效果。我试图将两者结合起来,使整个屏幕变白。有什么我想念的吗?
background: url("http://lewisking.net/images/header-image.jpg") no-repeat scroll 0px 100% / cover transparent;