「background-size: cover」が 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/
よく保管してください。