gpt4 book ai didi

javascript - 设置位置背景视频html5

转载 作者:行者123 更新时间:2023-11-27 23:47:59 24 4
gpt4 key购买 nike

在全屏模式下,我想将我的视频设置在中间垂直位置。
我可以通过更改 video.fillWidth 上的 bottom: 0;top: 0; 将视频放在顶部或底部类,但我不能将它设置在中间位置。

我愿意:

enter image description here

CSS:

.header-unit {
position: relative;
height: 600px;
}

video {
display: inline-block;
}

#video-container {
z-index: -1;
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
overflow: hidden;
}

video.fillWidth {
bottom: 0;
position: absolute;
width: 100%;
}

@media (max-width: 1099px){
video.fillWidth{
height:100%;
width:auto
}
}

HTML:

<div class="header-unit">
<div id="video-container">
<video autoplay loop class="fillWidth">
<source src="movie.mp4" type="video/mp4"/>
</video>
</div><!-- end video-container -->
</div><!-- end .header-unit -->

最佳答案

试试这个。

CSS:

video.fillWidth {
position: absolute;
width: 100%;
top: 50%;
transform: translateY(-50%);
}

关于javascript - 设置位置背景视频html5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28728083/

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