由于 background-attachment:fixed 在某些移动浏览器上不起作用(例如在 iOS 上),有什么替代方案,特别是在尝试实现以下演示时:http ://cppforums.ludost.net/test/test.html
CSS:
.sec1 {
min-height: 1000px;
background: #222 url('wallpaper-2959361.jpg') no-repeat center top fixed;
}
.sec2 {
min-height: 1000px;
background: #222 url('wallpaper-1829278.jpg') no-repeat center top fixed;
}
HTML:
<div class="sec1">text</div>
<h1>Title 1</h1>
<div class="sec2">more text</div>
<h1>Title 2</h1>
<div class="sec1">even more text</div>
关于如何以适用于所有浏览器的方式实现演示的任何建议?最好是仅 CSS 的解决方案。