.wrap {
position: absolute;
z-index: 777;
top: 100%;
left: 0;
width: 100%;
min-height: 100%;
background-color: white;
-webkit-overflow-scrolling: touch;
-moz-transform: translateX(25%);
-webkit-transform: translateX(25%);
-o-transform: translateX(25%);
-ms-transform: translateX(25%);
transform: translateX(25%);
}
section {
position: relative;
width: 100%;
display: table;
height: 450px;
border-bottom: 2px solid #E6EAED;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
background-color: #333;
background-repeat: repeat;
background-position: center center;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
background-image: url('http://placekitten.com/600/600');
}
上記のフィドルを参照してください。私が取り組んでいるプロジェクトで同様の構造を使用しています。これは、セクションが交互に配置されたページで、1 つはコンテンツ用で、もう 1 つはカバーと固定の背景画像を備えた仕切りとして機能します。
正常に動作しますが、固定された背景またはその親を持つ要素に変換を適用すると、何らかの理由で、背景が完全に消えるか、画像の一部のアーティファクトと一部が残ります。
他のブラウザでは正常に動作します。解決策を探す運がなかったので、誰かが私を助けてくれることを願っています.
前もって感謝します!