我有一个循环播放的视频,css代码如下
.bg video{
position: absolute;
top: 80px;
left: 0;
width: 100%;
height: 91.4%;
object-fit: cover;
这是HTML代码
<div class="bg">
<video src="videos/S22-Ultra-unboxing.mp4" muted loop autoplay></video>
<p>New S22 Ultra</p>
</div>
我想买"New S22 ultra";在视频前面。当我尝试的时候,文本总是在右上角。如果你不明白我的意思,我可以把整个文件发给你。
- 将
.bg
设置为position: relative;
,以便 - 将
<p>
文本与升高的z-index: 1;
和position: absolute
放在一起 - 根据需要为
<p>
文本设置top
和right
属性。 - 将
<p>
放在<div>
中会更简单,而不是
.bg {
position: relative;
background: #000;
height: 80vh;
}
.bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.bg-text {
position: absolute;
z-index: 1; /* not necessary if order in HTML is appropriate */
right: 20px;
top: 20px;
color: #ddd;
}
<div class="bg">
<video class="bg-video" src="https://r.myxotod.de/codepen.io/ambilight/sports.mp4" muted loop autoplay></video>
<div class="bg-text">New S22 Ultra</div>
</div>