手机横屏时出现黑块

问题描述 投票:0回答:3

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

CSS 非常基础

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

有什么建议吗?

提前致谢

html css landscape
3个回答
0
投票

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

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

感谢反馈!


0
投票

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

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

$(document).bind("orientationchange", function(e){
      $(window).trigger("throttledresize")
});`

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 */
}
© www.soinside.com 2019 - 2024. All rights reserved.