次のCSSを使用して、固定されたボディの背景を止めました。新しいiOS7を除くほとんどすべてのブラウザでうまく動作します。後者では、バックグラウンドはもはや固定されていません。それはページと共にスクロールします。どのように問題を解決するか?iOS7のページで固定されたボディの背景スクロール
body
{
background-color: #000;
background-image: url('../pics/backgrounds/blackWhite.jpg');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
CHEERS
[ios7で背景画像を固定]の複製が可能です(http://stackoverflow.com/questions/20443574/fixed-background-image-with-ios7) –