本帖最后由 花简静 于 2024-12-22 21:21 编辑
<style>
#pa {
margin: 30px 0 30px calc(50% - 851px);
width: 1700px;
height: 900px;
background: url('http://qslt.net/data/attachment/forum/202412/17/095523yjx6j82za2cws2jc.jpg') no-repeat center/cover;
box-shadow: 2px 2px 6px rgba(0,0,0,.6);
z-index: 1;
position: relative;
overflow: hidden;
}
#mypic1 {
position: absolute;
width: 360px;
left: calc(90% - 130px);
mix-blend-mode: screen;
top: 120px;
animation: fly 30s alternate infinite forwards ;
--xx: 1%;
z-index: 10;
pointer-events: none;
}
#mypic2 {
position: absolute;
width: 360px;
left: calc(10% + 660px);
mix-blend-mode:multiply;
top: 260px;
animation: fly 25s alternate infinite forwards ;
transform: scale(-1,1);
--xx: 90%;
z-index: 10;
pointer-events: none;
}
#vid {
position: absolute;
width: 100%;
height: 110%;
top:-80px;
object-fit: cover;
pointer-events: none;
mix-blend-mode: soft-light;
-webkit-mask: linear-gradient(to top, transparent, transparent, red, red, red);
z-index: 2;
opacity: .95;
}
@keyframes bigger { to { rx: 41; ry: 41; } }
@keyframes fly { to { left: var(--xx); } }
</style>
<div id="pa">
<audio id="aud" src="https://music.163.com/song/media/outer/url?id=1455273374" autoplay loop></audio>
<video id="vid" src="https://img.tukuppt.com/video_show/2629112/00/01/56/5b4608479c880.mp4" autoplay loop muted></video>
<img id="mypic1" src="https://pic.imgdb.cn/item/62479cbe27f86abb2adbb9bd.gif" alt="" />
<img id="mypic2" src="https://pic.imgdb.cn/item/62479cbe27f86abb2adbb9bd.gif" alt="" />
</div>
|