|
|

楼主 |
发表于 2026-8-25 08:22
|
显示全部楼层
帖子代码
- <style>
- @import 'https://638183.freep.cn/638183/web/api/audioplayer.css';
- .pa { --offsetX: 81px; --bg: url('https://638183.freep.cn/638183/t24/w8/sea.webp') no-repeat center/cover; color: lightblue; perspective: 1000px; }
- .player { width: 480px; bottom: 10px; }
- .btnFs { top: 25px; right: 20px; }
- .mpic-wrap { position: absolute; bottom: 65px; width: 200px; height: 200px; transform-style: preserve-3d; filter: drop-shadow(10px 10px 6px rgba(0,0,0,.95)); }
- .mpic { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; transition: 1s; }
- .mpic img { width: 100%; height: 100%; }
- .mpic:nth-of-type(2) { transform: rotateY(-180deg); }
- .mpic-wrap:hover .mpic:nth-of-type(1) { transform: rotateY(180deg); }
- .mpic-wrap:hover .mpic:nth-of-type(2) { transform: rotateY(0); }
- </style>
- <div id="pa" class="pa">
- <video class="pd-vid" src="https://img2.tukuppt.com/video_show/2405811/00/02/05/5b4f95c2beae1.mp4" autoplay loop muted></video>
- <div class="mpic-wrap">
- <div class="mpic">
- <img src="https://638183.freep.cn/638183/t22/hl/fish.gif" />
- </div>
- <div class="mpic">
- <img id="p1" class="rot" src="https://638183.freep.cn/638183/small/webp/hdxk.webp" />
- </div>
- </div>
- </div>
- <script>
- var options = {
- pa: '.pa',
- urls: [['https://music.163.com/song/media/outer/url?id=1991816681', '壳外']],
- btns: [p1],
- };
- loadJs('https://638183.freep.cn/638183/web/api/audioplayer.min.js', tzRun);
- function tzRun() {
- var aud = new AudPlayer(options);
- }
- function loadJs(url, callback) {
- var script = document.createElement('script');
- script.charset = 'utf-8';
- script.src = url;
- script.onload = function() {
- if (callback) callback();
- };
- document.head.appendChild(script);
- }
- </script>
复制代码
|
|