野生动物园(iPhone)上未显示Gif背景

时间:2018-07-17 13:53:12

标签: html css safari mobile-safari

我有一个gif作为我website上的第一个div的背景。出于某种原因,背景不会出现在safari(移动设备)中,但在其他所有移动设备浏览器上都能正常运行。 gif也会出现在桌面上的safari中。

我的CSS:

@media screen and (max-width: 960px){
.introsection {
    background-size: 100% !important;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
}
}

.introsection {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: url('../../assets/img/calm_logo.gif') no-repeat center;
    background-attachment: fixed;
    background-color: #fff;
    z-index: 99999;
}

0 个答案:

没有答案