- UID
- 1152
- 主题
- 回帖
- 0
- 精华
- 积分
- 7694
- 金币
- 枚
- 草籽
- 颗
- 鲜花
- 朵
- 注册时间
- 2025-4-16
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2025-12-13 19:45
|
显示全部楼层
不难,你试下,我代码给你,只要做好图后生成视频,代码内没图片,只两视频,上面个做好的视频链,下面个熊猫视频链。
下面https://644220.freep.cn/644220/aa/qww_134099268517175000.png图是标题。
- <style>
- #mydiv {
- margin: 130px 0 30px calc(50% - 800px);
- display: grid;
- place-items: center;
- width: 1700px;
- height: 890px;
- box-shadow: 3px 3px 20px #000;
- user-select: none;
- overflow: hidden;
- position: relative;
- z-index: 1;
- }
- #bg-vid {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- pointer-events: none;
- z-index: 0;
- }
- #vid {
- position: absolute;
- width: 130%;
- height: 130%;
- object-fit: cover;
- pointer-events: none;
- mix-blend-mode: screen;
- mask: linear-gradient(to top right, red 88%, transparent 0);
- z-index: 6;
- opacity: .45;
- }
- #character-img {
- position: absolute;
- width: 100%;
- height: 100%;
- object-fit: cover;
- pointer-events: none;
- z-index: 10;
- }
- #top-gif {
- position: absolute;
- top: 40px;
- left: 20%;
- width: 300px;
- height: auto;
- z-index: 20;
- pointer-events: none;
- }
- </style>
- <div id="mydiv">
- <img id="top-gif" src="https://644220.freep.cn/644220/aa/wqe.gif">
- <video id="bg-vid" src="https://i.uik.cc/view.php/41c7085fc6e4d920523ee7b41f6b882c.mp4" autoplay loop muted playsinline></video>
- <audio id="aud" src="https://ting8.yymp3.com/yymp3/01cn/04new/asang2/008.mp3" autoplay loop></audio>
- <video id="vid" src="https://img.tukuppt.com/video_show/15653652/00/82/37/60eb73f1550f4.mp4" autoplay loop muted></video>
- <img id="character-img" src="https://644220.freep.cn/644220/aa/qww_134099268517175000.png">
- </div>
复制代码 |
评分
-
1
查看全部评分
-
|