小编ruc*_*asu的帖子

使视频背景变暗

如何使视频中的背景变暗而不影响其上的文本?

 <div class="fullscreen-bg">   
    <video loop muted autoplay poster="img/videoframe.jpg" class="fullscreen-bg__video">
        <source src="images/instituteVideo.webm" type="video/webm">
    </video>
    <div class="text-vid">
        <h2 class="texts">Transform into a Smart Institute</h2>
    </div>
</div>

.fullscreen-bg {    
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            height: 84vh;
            width: 100%;
            overflow: hidden;
            object-fit: cover;
            z-index: -99;
            position: relative;
            filter: brightness(75%);
    }

    .text-vid {
            position: absolute;
            top:10%;
     }
Run Code Online (Sandbox Code Playgroud)

这是我尝试过的,我也尝试过使用不起作用的背景颜色。使用过滤器会使背景变暗,但也会影响文本颜色

html css

2
推荐指数
2
解决办法
3539
查看次数

标签 统计

css ×1

html ×1