0

My backgrounds looks totally wrong on my Ipad and Iphone, when I test it. I have search here on stackoverflow for my problem, but without luck! I know that "background-size:cover" is the problem, but i don't know how to fix it.

#home, #music, #videos, #tourplan, #facebook, #profile, #downloads {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
#home, #videos, #downloads {
    height: 100vh;
}
#music, #tourplan, #facebook, #profile {
    min-height: 100vh;
    height:auto;    
}
4

1 回答 1

0

我同意“背景尺寸:封面”由于宽度小而在 Ipad 和 Iphone 中无法正常工作。因此,如果您有问题,您可以为 Ipad 和 Iphone 使用任何背景颜色(根据您的选择)。

/* Ipad Layout: 480px. */

@media only screen and (min-width:480px) and (max-width: 767px){ {
    #home, #music, #videos, #tourplan, #facebook, #profile, #downloads {
    background: #ddd; /* Just as an example */
    }
}

/* Iphone Layout: 360px. */

@media only screen and (min-width: 360px) and (max-width: 479px) {
    #home, #music, #videos, #tourplan, #facebook, #profile, #downloads {
    background: #ddd; /* Just as an example */
    }   
}

如果您想使用不同的背景颜色而不是不同的背景图像,可以使用以下代码:

#home {
          background: #ddd; /* Just as an example */
}
#music {
       background: #eee; /* Just as an example */
}
#videos {
        background: #fff; /* Just as an example */
}
#tourplan {
          background: #000; /* Just as an example */
}
#facebook {
          background: #00ff00; /* Just as an example */
}
#profile {
         background: #ff0000; /* Just as an example */
}
#downloads {
           background: #0000ff; /* Just as an example */
}

在这种情况下,您需要将此代码放入您的特定 CSS 媒体查询区域,例如 . 您需要更改元素颜色,例如文本颜色等。要查看这样的网站,请访问此链接:http ://www.ollo.com.br/m/

保持良好。

于 2014-08-15T09:41:24.310 回答