奇怪的图像行为

时间:2015-09-12 15:13:14

标签: html css image

我在不同的设备上有一些奇怪的图像行为。

我一直在使用1920x1080的PC,1440 x 900 Mac和1920x1080的iPhone测试网站。

他们看起来都很好。

但是,当要求别人测试时。他们的行为正在发生截然不同的行为。

这是它应该是什么样子:

enter image description here

"图形" (设备和窗口)位于屏幕顶部。

然而,这就是它在Ipad上的样子:

enter image description here

由于某种原因,图形图像会显示在页面的正下方。

在Linux上使用Firefox存在同样的问题

enter image description here

我没有做任何事情来将它放在HTML中。这是相关代码:

<header>
    <div class="header-content">
        <div class="header-content-inner">
            <img src="/img/graphic.png" class="img-graphic">
            <!-- <h1>Experience new technological breakthroughs in the field of investing</h1>
            <hr> -->
            <p style="padding-top: 10px">What if it was possible to identify some of the next years' winners in the markets today with an 83%, 90%, or 95% average success rate?<sup>*</sup></p>
            <a id="read_more" href="#formula-stocks" class="btn btn-primary btn-xl page-scroll" style="opacity: 1!important">Would you be interested?</a>
            <a id="signup-a-btn" href="/register" class="btn btn-primary btn-xl">Sign Up for Free</a>
            <br /><sub><small>(*) Based on averages of cumulatively 9,800 recommendations.</small></sub>
        </div>
    </div>
</header>

以下是相关的CSS:

header {
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
    color: #FAFAFA;
    background-image: url("../img/header-2.jpg");
    background-position: bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover
}

.img-graphic {
    max-width: 100%;
    text-align: center
}
header .header-content {
    position: relative;
    width: 100%;
    padding: 100px 15px;
    text-align: center
}

我没有看到任何东西,会导致图像在某些设备上远离顶部放置?

&#34;图形&#34;本身就是这样:

enter image description here

它确实有一些空间。但是没有任何东西,这应该导致我的知识。

我的代码中有一些@media,如果与它有任何关系,可以在下面找到。

@media (min-width: 768px) {
    header {
        min-height: 100%
    }
    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        transform: translateY(-50%)
    }
    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px
    }
}

任何有关如何解决Linux / Ipad上这种奇怪行为的帮助,将不胜感激!

谢谢!

1 个答案:

答案 0 :(得分:1)

这将是您的home.min.css,第1009行和第1011行(已删除不相关的代码):

@media (min-width: 768px) {
    header .header-content {
        top: 50%;
        transform: translateY(-50%);
    }
}

自iOS 8.4起,Mobile Safari doesn't support transform,仅-webkit-transform 添加行

-webkit-transform: translateY(-50%);

到那个选择器,你应该好好去。