|
|

楼主 |
发表于 2023-8-24 20:19
|
显示全部楼层
帖子代码
- <style>
- #papa { margin: 0 0 0 calc(50% - 593px); width: 1024px; height: 640px; background: url('https://638183.freep.cn/638183/t23/webp2/qihh.webp') no-repeat center/cover; box-shadow: 4px 4px 8px black; overflow: hidden; display: grid; place-items: center; z-index: 1; position: relative; --state: running; }
- @keyframes move { from {left: 5%; } to { left: 50%; } }
- </style>
- <div id="papa"></div>
- <audio id="aud" src="https://yinpin.s3-us-east-1.ossfiles.com/qihang.mp3" autoplay loop crossorigin="anonymous"></audio>
- <script>
-
- (function() {
- let script = document.createElement('script');
- script.src = 'https://638183.freep.cn/638183/web/api/xyppx_lrc.js';
- script.charset = 'utf-8';
- document.head.appendChild(script);
- let geci = [ [1,"歌手 - 变奏的梦想",3.2], [5,"起 航",2] ];
- script.onload = () => {
- HCPlayer({
- papa: '#papa',
- lrcAr: geci,
- lrc_css: `
- left: 30px;
- top: 20px;
- animation: move 10s infinite alternate var(--state);
- `,
- player_css: `
- --len: 3px;
- bottom: 100px;
- color: snow;
- `,
- pinpu_num: 90,
- });
- };
- })();
- </script>
复制代码
|
|