【发布时间】:2023-03-10 00:42:01
【问题描述】:
我有这张大图作为网站的背景:
body {
background: #000 url(/assets/img/living.jpg) no-repeat center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height:100%;
}
但在我的移动设备(iPhone 4S - Safari)上,background-attachment: fixed 的效果似乎与在台式机上的效果不同。为什么会这样?我可以使用媒体查询来解决这个问题吗?
【问题讨论】:
-
到底发生了什么?可以发个链接调查一下吗?
-
移动版 Safari 可能不支持
background-attachment: fixed。看看stackoverflow.com/questions/3011226/…
标签: css mobile mobile-safari background-image media-queries