開発中のサイトに基本的な視差効果を導入しました。Chrome、Firefox、IE9でスムーズに動作します。しかし、IE7とIE8では本当にぎくしゃくしています。私ははるかに複雑なサイトを見てきましたが、私が得ている「ぎくしゃくした」ようなものは見当たりません。スキャンラインテクスチャが上にある2つの画像のみを使用しています。
これを引き起こしている可能性のあるアイデアはありますか?
#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;
}
助けてくれてありがとう。