通常の縦方向のセクションに分割されたサイトがあります。ヘッダーとフッターの両方に background-attachment: fixed の背景が含まれています。スライド アウト ナビゲーションがあり、最初のリンクでアクティブになっていることがわかります。すべてがうまく機能します...
問題: Safari 6 (5.1 についてはわかりませんが、私の Windows Safari には問題がないため、Mac にあるようです) では、アニメーション時にちらつきが発生します。これは通常の -webkit-backface ハックで解決できますが、これを使用すると、新しい問題が発生します。固定された背景画像の動作が非常に悪くなり、ブラウザを十分にスクロール/サイズ変更すると、画像が歪んだり、コンテンツが不適切にオーバーレイされたりします。この手法に使用できる代替方法、または実際の修正方法はありますか?
HTML
<section>Hi <a href="#">CLICKME</a></section>
<section>hi</section>
<section>hi</section>
<section>hi</section>
<footer><p>I am some text</p></footer>
<aside class="menu">
I'm a menu.
</aside>
CSS
body {
background: #222;
transition: all 0.3s;
-webkit-backface-visibility: hidden;
}
body.bump {
transform: translate(-258px, 0);
}
section {
background: #CBA;
color: white;
line-height: 450px;
font-size: 32px;
height: 500px;
position: relative;
text-align: center;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
z-index: 1;
}
section:nth-child(2) {
background: #FAFAFA;
}
section:nth-child(3) {
background: #CCC;
}
section:nth-child(4) {
background: #ABC;
}
section:first-child {
background: url(http://placekitten.com/1600/500) center top;
background-attachment: fixed;
-webkit-backface-visibility: hidden;
}
@media all and (min-width: 73.75em) {
section:first-child {
background-size: cover;
}
}
footer {
background: url(http://placekitten.com/1400/500) center top;
background-attachment: fixed;
color: white;
font-size: 32px;
height: 500px;
}
@media all and (min-width: 73.75em) {
footer {
background-size: cover;
}
}
footer p {
position: fixed;
bottom: 200px;
left: 0;
text-align: center;
width: 100%;
}
aside.menu {
background: #222;
color: #FFF;
height: 100%;
padding-top: 30px;
position: fixed;
top: 0;
right: 0;
text-align: left;
transform: translate(516px, 0);
transition: all 0.3s;
width: 258px;
-webkit-backface-visibility: hidden;
}
.bump aside.menu {
transform: translate(258px, 0);
}
JS (Jquery を使用)
$('section a').click( function(e) {
$('body').toggleClass('bump');
});