gpt4 book ai didi

html - 响应式视频背景 : Video alignment

转载 作者:行者123 更新时间:2023-11-28 03:18:09 25 4
gpt4 key购买 nike

我想创建响应式背景视频,但不知道如何更改对齐方式。据我所知,目前的对齐方式是右下角,但我想将其更改为居中。 (如背景位置:中心中心)

有什么办法可以实现吗?

fiddle :http://jsfiddle.net/66dLhjxh/

HTML:

<video autoplay loop poster="http://demosthenes.info/assets/images/polina.jpg" id="bgvid">
<source src="http://demosthenes.info/assets/videos/polina.webm" type="video/webm">
<source src="http://demosthenes.info/assets/videos/polina.mp4" type="video/mp4">
</video>

CSS:

video { 
position: fixed;
display:block;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background-color:#fff;
background:url(../img/schrijven.jpg) no-repeat;
background-size: cover;
background-position: center center;
}

最佳答案

试试这个代码 DEMO

<div id="info">
Responsive Youtube embed......
</div>
<div class="holder">
<div class="video-container">

</div>
</div>
<button onclick="nextVideo()">Next Video</button>
</div>

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 30px; /* size of chrome */
height: 0;
overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container #overlay,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#overlay {
background:#000;
opacity:0.5;
/*background:rgba(255,255,255,0.8); or just this*/
z-index:50;
color:#fff;
}

关于html - 响应式视频背景 : Video alignment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26237395/

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