1

在我的 iPhone 4 上查看这个网站时,一切看起来都应该是纵向布局。当旋转到横向视图时,有一个 div 负责在屏幕中间创建一个黑色块(下图)。

CSS非常基础

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

有什么建议么?

提前致谢

4

3 回答 3

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 回答
0

轻松修复。我的图像没有调整大小。

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

感谢反馈!

于 2013-02-02T23:33:15.987 回答
0

嗨,我在 iphone 和 ipad 中遇到了这个问题,我在orientationchange触发事件/函数中使用了以下代码

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

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