1

このサイトを iPhone 4 で表示すると、縦向きのレイアウトですべてが正しく表示されます。横長のレイアウトで表示するために回転すると、画面の中央に黒いブロックを作成する役割を担う div が 1 つあります (下)。

CSSはかなり基本的なものです

width: 100%;
img {
    margin-top: 50px;
    max-width: 100%;
}

助言がありますか?

前もって感謝します

4

3 に答える 3

0

こんにちは、iPhone と iPad でこの問題が発生しました。orientationchange でトリガーされたイベント/関数で次のコードを使用しました

$(window).trigger("throttledresize");

$(document).bind("orientationchange", function(e){
      $(window).trigger("throttledresize")
});`
于 2013-04-16T07:13:38.583 に答える
0

簡単に修正。画像のサイズが変更されませんでした。

img { height: auto; max-width: 100%; }

フィードバックをお待ちしております。

于 2013-02-02T23:33:15.987 に答える
0

メディア クエリの標準デバイスに使用されるようになりました

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}

詳しくは

于 2012-11-27T04:12:49.107 に答える