Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个奇怪的场景,因为通常我只会使用 CSS。我正在开发一个带有类固醇的 iOS 应用程序(类似于 PhoneGap)。Web 视图不支持 CSS 固定背景。
有针对这个的解决方法吗?我一直找不到。谢谢!
实际上我只是尝试了一个“黑客”并且它有效。这是其他人遇到此问题的解决方案:
HTML:
<img class="background" src="img/background.jpg" />
CSS
.background { z-index: -1; position: fixed; bottom: 0; left: 0; }
谢谢!