小编Jos*_*eph的帖子

如何停止响应式背景视频“封面”在每个页面加载时跳转?(网络工具包)

我花了几天时间尝试修复/解决这个令人恼火的错误,该错误似乎主要针对 WebKit/Safari(桌面和移动设备),并且非常感谢您帮助找出解决方法。

问题是,无论我做什么,每次页面加载时背景视频都会“跳跃”,然后再卡入到位并正常播放。

车身代码

<div class="head home-head section">
    
    <video id="background-video" autoplay preload loop muted playsinline poster="images/poster.jpg">
    <source src="images/hero.mp4" type="video/mp4">
    </video>

</div>
Run Code Online (Sandbox Code Playgroud)

社会保障体系

.head {
width: 100%;
height: 80%;
height: 80vh;
min-height: 650px;
text-align: center;
background: #000;
position: relative;
padding: 0;
margin: 0;
overflow: hidden;
        
    #background-video {
    width: 100%;
    width: 100vw;
    min-height: 650px;
    height: 80%;
    height: 80vh;
    object-fit: cover;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    }
Run Code Online (Sandbox Code Playgroud)

我认为这可能与使用 object-fit: cover 有关,但我不确定。我尝试过使用 object-fit: fill 但它仍然会跳来跳去,只是以不同的方式,然后当它加载时,视频会根据视口宽度被压缩。

我已将有问题的代码上传到此页面: http: //royalwells.agency/stackoverflow。请记住,这种情况似乎只发生在 …

html css safari webkit html5-video

5
推荐指数
0
解决办法
344
查看次数

标签 统计

css ×1

html ×1

html5-video ×1

safari ×1

webkit ×1