使用stellar.js在移动设备上无法正确显示background-image

时间:2015-07-28 13:09:56

标签: css3 mobile background-image stellar.js

大家好我正在使用stellar.js,它对桌面设备运行安静。但在移动设备上,背景图像将仅显示其中的一部分。它不显示整个图像,而是显示图像的左角。问题必须是css代码。但我没有看到它。谢谢你的帮助!

我的css看起来像:

.intro-section {
    padding: 150px 0px;
    text-align: center;
    background-attachment: fixed;
    width:100%;
    height:100%;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-image: url(../images/frederick_meseck_wood_logo.png);
    background-repeat: no-repeat;
}

@media(min-width:768px) {
    .intro-section {
        min-height: 100%;
    }
}

1 个答案:

答案 0 :(得分:0)

在媒体查询中尝试此操作:

@media(min-width:768px) {
    .intro-section {
        background-attachment: inherit !important;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
}

第一个background-size参数是宽度,你可以在转到更小的设备时增加这个值(我推荐这个)