|
|

楼主 |
发表于 2022-11-25 07:44
|
显示全部楼层
帖子代码
<style>
#papa { margin: 0 0 0 calc(50% - 681px); display: grid; place-items: center; width: 1200px; height: 675px; background: lightblue url('https://638183.freep.cn/638183/t22/webp/adiemus_133138056542198984.webp') no-repeat center/cover; box-shadow: 3px 3px 20px #000; user-select: none; overflow: hidden; position: relative; z-index: 1; }
#papa::before { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: repeating-conic-gradient(at 50% 0, hsla(0,0%,100%,.2) 0 2deg,transparent 0 20deg); animation: opa 6s linear infinite alternate, rot 10s infinite alternate; }
@keyframes opa { from { opacity: .05; } to { opacity: .55; } }
@keyframes rot { to { transform: rotate(5deg); } }
</style>
<div id="papa"></div>
<audio id="aud" src="https://music.163.com/song/media/outer/url?id=3951210.mp3" loop autoplay></audio>
<script >
(function() {
//插件代码略 (function(mkPlayer)...
let lrcAr = [
[2, "Adiemus - 阿迪穆斯", 3],
];
HCPlayer({
lrcAr: lrcAr,
});
})();
</script> |
|