【发布时间】:2019-07-04 12:55:35
【问题描述】:
当我在 iPhone 或其他任何人上打开背景图片时,它不显示。在 Android 设备上,它可以正常工作,在 Safari 中的计算机上,它也可以正常工作。
HTML
<section id="home" class="header">
<div class="v-middle">
<div class="container">
<div class="row">
<div class="caption">
<h5>Hello</h5>
<h1 class="headline-Text">I Am <span id="animated- Text"></span></h1>
</div>
</div>
</div>
</div>
</section>
CSS
#home {
background: url("../images/header-background.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100vh;
}
【问题讨论】: