修正了iOS 7 中的背景影像問題
在iOS 7 上實現固定背景影像可能會出現問題,尤其是在iPad上,從而導致放大且模糊的圖像。要解決此問題,請查看以下CSS 代碼:
.header { display: table; height: 100%; width: 100%; position: relative; color: #fff; background: url(../images/boston2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
可能的解決方案:
@media screen and (max-device-width: 1024px) { .header { background-attachment: scroll; } }
考慮這些解決方案,您可以在 iOS 7 上有效地顯示固定背景圖像,而不會遇到問題。
以上是如何修復 iOS 7 上模糊的背景圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!