本帖最后由 花简静 于 2024-12-22 18:00 编辑
<style>
#mydiv {
margin: 30px 0 30px calc(50% - 931px);
display: grid;
place-items: center;
width: 1700px;
height: 900px;
background: lightblue url('http://qslt.net/data/attachment/forum/202412/17/095149jlyd0pck3ce3kmyr.jpg') no-repeat center/cover;
box-shadow: 3px 3px 20px #000;
user-select: none;
overflow: hidden;
position: relative;
z-index: 1;
}
#vid {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
mix-blend-mode:luminosity;
-webkit-mask: linear-gradient(to bottom,transparent,transparent,transparent,red);
z-index: 2;
opacity: .95;
}
</style>
<div id="mydiv">
<audio id="aud" src="https://music.163.com/song/media/outer/url?id=27571238" autoplay loop></audio>
<video id="vid" src="https://img.tukuppt.com/video_show/2475824/00/01/72/5b492fae7af99.mp4" autoplay="" loop="" muted=""></video>
</div>
|