|
|
本帖最后由 夕阳黄昏 于 2026-8-16 20:06 编辑
- <style>
- #pMaskTest {
- margin: 20px auto;
- width: 650px;
- height: 1080px;
- background: #000000 url(https://img-baofun.zhhainiao.com/pcwallpaper_ugc_mobile/static/4b1442569ec66dcdfed8fdf1ff81f35e.jpg)no-repeat 0 -50px/ cover;
- box-shadow: 0px 0px 0px 2px #cccccc, 0px 0px 0px 8px #880000;
- position: relative;
- overflow: hidden;
- }
-
- #pMaskV , #iMask {
- width: 100%;
- position: absolute;
- top: 10%;
- left: 0px;
- height: 100%;
- mask: url(https://pic1.imgdb.cn/i/0348239ABr47zCIP6CDV2N.png)no-repeat center / 100% 100%;
- }
- #pMaskV {
- object-fit: cover;
- opacity:0;
- }
- </style>
- <div id="pMaskTest">
- <img src="https://img-baofun.zhhainiao.com/pcwallpaper_ugc_mobile/static/1cbca08023c715c13c90c326b4733110.jpg" id="iMask" />
- <video id="pMaskV" src="https://pic.3gbizhi.com/uploads/20260506/4822f47d1ad4313f818839d8a9fc3ecc.mp4" loop autoplay muted > <//video>
- </div>
- <script>
- const mvs = [
- "https://pic.3gbizhi.com/uploads/20260815/9a185ed8481cf0ca38baf07e0ac55f7b.mp4",
- "https://pic.3gbizhi.com/uploads/20260815/be7dd1ad5aac835516f9932cc72f6315.mp4",
- "https://pic.3gbizhi.com/uploads/20260811/0c53eb1b71ef19e12ac23ddf045d7886.mp4",
- "https://pic.3gbizhi.com/uploads/20260811/9ffe7109678b08b954161c78a172fe17.mp4",
- "https://pic.3gbizhi.com/uploads/20260807/132c6375c4c37c9673714bce575e3b30.mp4",
- "https://pic.3gbizhi.com/uploads/20260807/4a2a5c76d7cc19ea8982b80a6396022c.mp4",
- "https://pic.3gbizhi.com/uploads/20260603/3549ac7ed712e31ff11a6cc90d987287.mp4",
- "https://pic.3gbizhi.com/uploads/20260506/4822f47d1ad4313f818839d8a9fc3ecc.mp4",
- ];
- let imgIdx = 0;
- pMaskTest.onmouseenter = () => {
- iMask.style.opacity = 0;
- pMaskV.style.opacity = 1;
- pMaskV.src = mvs[imgIdx++];
- imgIdx %= mvs.length;
- }
- pMaskTest.onmouseleave = () => {
- iMask.style.opacity = 1;
- pMaskV.style.opacity = 0;
- }
- </script>
复制代码 |
|