gpt4 book ai didi

html - 视频作为 html 中的背景

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

我的代码有问题我已经提到过这个 - 溢出:隐藏在 css 中但我的视频仍然没有显示在文本下面。我在我的 css 中提到了以下内容:

fullscreen-bg {
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow:hidden;
`enter code here`z-index: -100;
}

.fullscreen-bg__video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

最佳答案

这不是我写的,但它应该能让你大致了解如何去做,

video { 
position: fixed;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
transform: translateX(-50%) translateY(-50%);
background: url('//demosthenes.info/assets/images/polina.jpg') no-repeat;
background-size: cover;
transition: 1s opacity;
}
.stopfade {
opacity: .5;
}

来源:

https://codepen.io/dudleystorey/pen/knqyK

关于html - 视频作为 html 中的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36234444/

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