|
|

楼主 |
发表于 2023-11-27 09:41
|
显示全部楼层
帖子代码
- <style>
- #papa {
- margin: -70px 0 0 calc(50% - 593px);
- display: grid;
- place-items: center;
- width: 1024px;
- height: 640px;
- background: lightblue url('https://638183.freep.cn/638183/t23/3/008.jpg') no-repeat center/cover;
- box-shadow: 3px 3px 20px #000;
- position: relative;
- z-index: 1;
- --state: running;
- }
- .play_pic {
- position: absolute;
- cursor: pointer;
- }
- .play_pic:nth-of-type(1) {
- width: 300px;
- opacity: .8;
- transform: rotate(145deg);
- transition: 1.5s;
- }
- .play_pic:nth-of-type(2) {
- width: 200px;
- bottom: 10px;
- right: 10px;
- animation: rot 10s infinite var(--state);
- }
- .play_pic:nth-of-type(1):hover { opacity: 0; }
- @keyframes rot {
- to { transform: rotate(1turn); }
- }
- </style>
- <div id="papa">
- <audio id="aud" src="https://music.163.com/song/media/outer/url?id=1914628093" autoplay loop></audio>
- <img class="play_pic" src="https://638183.freep.cn/638183/web/svg/7c-umbrella.svg" alt="" />
- <img class="play_pic" src="https://638183.freep.cn/638183/web/svg/sunfl-2.svg" alt="" />
- </div>
- <script>
- let lrcAr = [
- [1.5,"作词 : 十二兄",1.6],
- [3.08,"作曲 : 米茶",1.5],
- [4.55,"编曲 : 李大白/Fsy小诺",1.4],
- [5.96,"文案故事:闫倩莹",1.6],
- [7.56,"歌手:国风堂 / 河图",3.9],
- [14.12,"许是一瞥最惊鸿",2.0],
- [17.17,"才有你入我眼中",2.0],
- [19.92,"落笔沾染万里风",1.8],
- [21.86,"山海风月皆为你动容",3.2],
- [25.55,"一砚星河蘸笔锋",1.8],
- [28.18,"万顷星子藏眸中",1.9],
- [31.07,"世间万物略显平庸",3.7],
- [36.32,"山与海 在眉目间相拥",2.3],
- [39.16,"风与月 在回眸中相逢",2.4],
- [41.89,"纸与墨 在落笔后心动",2.3],
- [44.19,"一支笔描三分容 已胜万种",2.9],
- [47.41,"星与辰 在一笑后奔涌",2.4],
- [50.21,"烟与火 在初见时渐浓",2.4],
- [53.1,"一纸墨 半纸心事重重",4.4],
- [81.3,"两袖倚云结清风",1.8],
- [84.16,"一丈红尘眉目中",1.9],
- [87.1,"笔过风情胜万种",1.9],
- [88.97,"风华绝代难绘就一成",3.3],
- [92.59,"衣袂过处斗芳红",1.7],
- [95.2,"提笔勾勒花下梦",2.0],
- [98.02,"收笔难收一面惊鸿",3.7],
- [103.24,"山与海 在眉目间相拥",2.3],
- [106.03,"风与月 在回眸中相逢",2.4],
- [108.91,"纸与墨 在落笔后心动",2.3],
- [111.19,"一支笔描三分容 已胜万种",2.6],
- [114.53,"星与辰 在一笑后奔涌",2.2],
- [117.18,"烟与火 在初见时渐浓",2.5],
- [120.08,"一纸墨 半纸心事重重",4.5],
- [147.89,"山与海 在眉目间相拥",2.3],
- [150.6,"风与月 在回眸中相逢",2.5],
- [153.52,"纸与墨 在落笔后心动",2.2],
- [155.88,"一支笔描三分容 已胜万种",3.0],
- [159.13,"星与辰 在一笑后奔涌",2.3],
- [161.8,"烟与火 在初见时渐浓",2.5],
- [164.56,"一纸墨 半纸心事重重",4.8]
- ];
- let loadJs = (url,callback) => {
- let body = document.querySelector('body'), jsNode = document.createElement('script');
- jsNode.charset = 'utf-8';
- jsNode.setAttribute('src', url);
- body.appendChild(jsNode);
- jsNode.onload = () => callback();
- };
- loadJs('https://638183.freep.cn/638183/web/api/hc_lrc.js', () => {
- HCPlayer({
- papa: '#papa',
- lrcAr: lrcAr,
- lrc_css: 'top: 20px; right: 200px; font-size: 2em;',
- });
- });
- for(i = 0; i < 6; i++) {
- let img = document.createElement('img');
- img.className = 'play_pic';
- img.alt = '';
- img.src = 'https://638183.freep.cn/638183/web/svg/sunfl-2.svg';
- img.style.cssText += `
- left: ${i * 10 + 10}px;
- top: ${i * 5 + 10}px;
- width: ${i * 50 + 50}px;
- height: ${i * 50 + 50}px;
- filter: opacity(${Math.random() * 0.5 + 0.5}) hue-rotate(${Math.random() * 360}deg);
- animation: rot ${Math.random() * 6 + 4}s ${Math.random() * -3}s infinite linear var(--state);
- `;
- papa.appendChild(img);
- }
- </script>
复制代码
|
评分
-
查看全部评分
|