草系:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
第249行: | 第249行: | ||
<div class="sprite-name">389辛奇帕克</div> | <div class="sprite-name">389辛奇帕克</div> | ||
</div> | </div> | ||
<style> | <style> | ||
#floating-player { | #floating-player { | ||
第254行: | 第255行: | ||
bottom: 20px; | bottom: 20px; | ||
right: 20px; | right: 20px; | ||
background: rgba(0, 0, 0, 0. | background: rgba(0, 0, 0, 0.85); | ||
border-radius: 12px; | border-radius: 12px; | ||
padding: 10px 14px; | padding: 10px 14px; | ||
第264行: | 第265行: | ||
font-family: sans-serif; | font-family: sans-serif; | ||
color: white; | color: white; | ||
box-shadow: 0 0 8px #000; | |||
} | } | ||
第274行: | 第276行: | ||
color: white; | color: white; | ||
cursor: pointer; | cursor: pointer; | ||
font-size: 14px; | |||
} | } | ||
第293行: | 第296行: | ||
width: 0%; | width: 0%; | ||
background: #66f; | background: #66f; | ||
transition: width 0.2s linear; | |||
} | } | ||
</style> | </style> | ||
第304行: | 第308行: | ||
</div> | </div> | ||
<audio id="bgm" src="https://d1rtq9slcl72gh.cloudfront.net/audio/home.mp3" | <audio id="bgm" src="https://d1rtq9slcl72gh.cloudfront.net/audio/home.mp3" loop></audio> | ||
<script> | <script> | ||
const bgm = document.getElementById('bgm'); | const bgm = document.getElementById('bgm'); | ||
const bar = document.getElementById('bar'); | const bar = document.getElementById('bar'); | ||
// 首次点击页面启用音乐播放权限(避免被浏览器拦截) | |||
document.body.addEventListener('click', () => { | |||
bgm.play().catch(() => {}); | |||
}, { once: true }); | |||
// 实时更新进度条 | |||
setInterval(() => { | setInterval(() => { | ||
if (!bgm.duration) return; | if (!bgm.duration) return; |