banner div 和 video 一样大小,现在想给 video 加一个半透明蒙版,
slogan div 设置地和父 div banner 一样大即可。
html
<div id="banner"> <video autoplay="autoplay" loop="loop" muted="muted"> <source src="../static/video/train.mp4"> </video> <div class="slogan"> <h1>空天车地信息一体化轨道交通</h1> <p>Power Train with AI.</p> <a href="#demo" class="btn btn-lg btn-success">Try the demo</a> </div></div>
css
#banner { position: relative; width: 100%; }#banner video { width: 100%; }.slogan { position: absolute; background: rgba(0, 0, 0, .4); width: 100%; top: 0; bottom: 0; /*very important*/}
效果图
作者:谢小帅
链接:https://www.jianshu.com/p/3714ca29e647