gpt4 book ai didi

html - CSS视频背景是全屏,只需要它作为部分

转载 作者:太空宇宙 更新时间:2023-11-04 03:21:15 26 4
gpt4 key购买 nike

我有视频背景,它占据了我网站的整个空间,而我希望它只覆盖网站的一部分,即标题部分。我希望这是有道理的。

<div class="container-fluid">

<div id="header" class="header-section">

<video autoplay loop id="backgroundvideo">
<source src="videos/BackgroundVideo.webm" type="video/webm">
<source src="videos/BackgroundVideo.mp4" type="video/mp4">
</video>
</div>
</div>

这是视频的 CSS:

video#backgroundvideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background-size: cover;
}

最佳答案

看看这个 Example .

CSS

video#backgroundvideo {
position: absolute;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background-size: cover;
}
.header-section {
width:100%;
height:200px;
background:#d7d7d7;
}

关于html - CSS视频背景是全屏,只需要它作为部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27848757/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com