2

我遇到了这个特定网站没有显示其中一个背景的问题。我没有设计这个网站,它今天才交给我。

但网址是: http: //musicalchairswc.com/

CSS是:

div.body_wrapper {
  background-image:url(img/big_bg_mod.jpg), url(img/bg_gradient.jpg);
  background-repeat:no-repeat, repeat-y;
  background-position: center -25px, center top;

}

但在 iPhone 上,第一个背景 (img/big_bg_mod.jpg) 不显示。据我了解 - Mobile Safari 现在支持多种背景,是吗?

预先感谢您的任何指点。

4

1 回答 1

2

阅读精美的文档。

http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/CreatingContentforSafarioniPhone/CreatingContentforSafarioniPhone.html#//apple_ref/doc/uid/TP40006482-SW15

JPEG 的最大解码图像大小为 32 兆像素,使用二次采样。

这是我接近它的方式。

div.body_wrapper {
  background-image:url(img/big_bg_mod_1-1.jpg), url(img/big_bg_mod_1-2.jpg), url(img/big_bg_mod_1-3.jpg), url(img/bg_gradient.jpg);
  background-repeat:no-repeat, repeat-y;
  background-position: center -25px, center 1000px, center 2000px, center top;
}

我拆分 big_bg_mod.jpg (2320x1000, 2320x1000, 2320x320)

于 2012-04-18T05:15:39.597 回答