我已经在我正在开发的网站中引入了基本的视差效果。在 Chrome、Firefox 和 IE9 中运行流畅;但在 IE7 和 IE8 中确实很生涩。我查看了更复杂的网站,但没有看到像我得到的“急躁”之类的东西。我只使用了两个顶部带有扫描线纹理的图像。
有什么想法可能导致这种情况吗?
#intro {
background: url(../img/graphics/top-bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-width: 1024px;
min-height: 768px;
height: 100%;
position: relative;
}
#second {
background: url(../img/graphics/content-bg-2.jpg) center no-repeat fixed;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-width: 1200px;
min-height: 768px;
height: 4800px;
}
任何帮助表示赞赏,谢谢。