|
|

楼主 |
发表于 2022-11-20 07:16
|
显示全部楼层
本帖最后由 马黑黑 于 2022-11-20 07:27 编辑
参考代码
- <style> #papa { margin: 0 0 0 calc(50% - 593px); display: grid; place-items: center; width: 1024px; height: 680px; background: lightblue url('https://638183.freep.cn/638183/t22/webp/drhy.webp') no-repeat center/cover; box-shadow: 3px 3px 20px #000; user-select: none; position: relative; z-index: 1; } </style>
- <div id="papa">
- <img src="https://638183.freep.cn/638183/t22/gif/1s.gif" alt="" style="position: absolute; bottom: 0; right: 0;" />
- </div>
- <audio id="aud" src="https://music.163.com/song/media/outer/url?id=5179669.mp3" loop autoplay></audio>
- <script >
- //插件代码略
- //歌词数组代码样式↓
- let lrcAr = [[0.95,"Je voudrais du soleil vert<br>我想要绿色的阳光",2.6],[5.27,"Des dentelles et des théières<br>茶壶和蕾丝的花边",]];
- //设置播放器插件参数↓
- HCPlayer({
- lrcAr: lrcAr,
- lrc_css: `
- top: 5px;
- left: 50%;
- transform: translate(-50%);
- --bg: linear-gradient(hsla(100,70%,50%,.35),hsla(120,40%,40%,.6));
- color: hsla(120,100%,95%,.95);
- `,
- player_css: `
- bottom: 20px;
- --color: snow;
- --ww: 200px;
- --btn_size: 40px;
- --btn_img: url("https://638183.freep.cn/638183/t22/btn/g3.png") no-repeat center/cover;
- `,
- });
- </script>
复制代码
|
|