2014-01-22 46 views
0

我的网站有一些背景图像不显示在iPad上。在iPad上不显示几个背景图像

我对这些图像的代码是:

#section-biography { background: transparent url(../img/bio.jpg) no-repeat fixed 50% 0; } 

我读到这里 (Really) Long Background Image Does Not Render on iPad Safari ,对iPad上的背景图片的最大尺寸是:

width * height ≤ 3 * 1024 * 1024 

如果我有几个不同的图像我背景,上述公式是否适用于所有背景图像的总和,换句话说,公式成为:

width_img_1 * height_img_1 + width_img_2 * height_img_2 + .... width_img_n * height_img_n ≤ 3 * 1024 * 1024 

回答