|
|

楼主 |
发表于 2026-8-26 13:24
|
显示全部楼层
帖子代码
- <style>
- @import 'https://638183.freep.cn/638183/web/api/audioplayer.css';
- .pa { --offsetX: 81px; --bg: url('https://638183.freep.cn/638183/small/webp/yms.webp') no-repeat center/cover; color: lightblue; perspective: 1000px; }
- .player { width: 480px; bottom: 10px; }
- .btnFs { top: 25px; right: 20px; }
- .tit { position: absolute; top: 5%; width: 100%; height: 80px; display: grid; place-items: center; font-size: 3vw; font-weight: bold; color: rgba(200,200,200,.5); cursor: pointer; transform-style: preserve-3d; }
- .tit::before, .tit::after { content: 'Profesia del condor y el aguila'; position: absolute; background: linear-gradient(90deg, tan, orange, tan) no-repeat 0 0 / 35% 100%; background-clip: text; -webkit-background-clip: text; filter: drop-shadow(-1px -1px 2px black); transform: rotateX(0); backface-visibility: hidden; transition: 1s; animation: bmove 8s linear infinite alternate; }
- .tit::after { content: '歌手 :Alborada Del Inka'; transform: rotateX(-180deg); }
- .tit:hover::before { transform: rotateX(180deg); }
- .tit:hover::after { transform: rotateX(0); }
- @keyframes bmove { to { background-position: 100% 100%; } }
- </style>
- <div id="pa" class="pa">
- <video class="pd-vid" src="https://img2.tukuppt.com/video_show/2629112/00/08/02/5d14ea2e10804.mp4" autoplay loop muted></video>
- <div id="tit" class="tit"></div>
- </div>
- <script>
- var options = {
- pa: '.pa',
- urls: [['https://music.163.com/song/media/outer/url?id=3934868', '1']],
- btns: [tit],
- };
- 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>
复制代码
|
|