background-size:cover と background-attachment:fixed の div があります。これは、iOS 以外では問題なく動作します。
#featured {
background:url(img/mountains.jpg) center bottom no-repeat fixed;
background-size:cover;
padding-bottom:65px;
}
問題は次の質問に似ています: Using background-attachment:fixed in safari on the ipad iOS の Fixed Position Background
しかし、そうではありません。私が見つけたすべての解決策は、body タグの背景を固定することです。しかし、動的ページの真ん中にある div 内に固定の背景が必要です。したがって、偽の div を position:fixed に設定してもうまくいきません。
iOS で固定位置の背景を機能させる別の方法はありますか? jQuery は必要ですか?