首页:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
第2行: | 第2行: | ||
歌曲来自b站up主: maltemarten | 歌曲来自b站up主: maltemarten | ||
< | <style> | ||
#floating-player { | |||
position: fixed; | |||
bottom: 20px; | |||
right: 20px; | |||
background: rgba(0, 0, 0, 0.85); | |||
border-radius: 12px; | |||
padding: 10px 14px; | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
z-index: 9999; | |||
width: 240px; | |||
font-family: sans-serif; | |||
color: white; | |||
box-shadow: 0 0 8px #000; | |||
} | |||
#floating-player button { | |||
margin: 6px; | |||
padding: 6px 12px; | |||
border-radius: 6px; | |||
border: none; | |||
background: #444; | |||
color: white; | |||
cursor: pointer; | |||
font-size: 14px; | |||
} | |||
<div id="floating-player"> | #floating-player button:hover { | ||
background: #666; | |||
} | |||
#progress { | |||
width: 100%; | |||
margin-top: 8px; | |||
height: 6px; | |||
background: #222; | |||
border-radius: 4px; | |||
overflow: hidden; | |||
} | |||
#bar { | |||
height: 100%; | |||
width: 0%; | |||
background: #66f; | |||
transition: width 0.2s linear; | |||
} | |||
</style> | |||
<div id="floating-player" | |||
onclick="(function(){ | |||
var bgm = document.getElementById('bgm'); | |||
if (!window.bgm_initialized) { | |||
document.body.addEventListener('click', function(){ | |||
bgm.play().catch(()=>{}); | |||
}, { once: true }); | |||
setInterval(function(){ | |||
if (!bgm.duration) return; | |||
var percent = (bgm.currentTime / bgm.duration) * 100; | |||
document.getElementById('bar').style.width = percent + '%'; | |||
}, 300); | |||
window.bgm_initialized = true; | |||
} | |||
})()" | |||
> | |||
<div> | <div> | ||
<button onclick="bgm.play()">▶ 播放</button> | <button onclick="document.getElementById('bgm').play()">▶ 播放</button> | ||
<button onclick="bgm.pause()">⏸ 暂停</button> | <button onclick="document.getElementById('bgm').pause()">⏸ 暂停</button> | ||
</div> | </div> | ||
<div id="progress"><div id="bar"></div></div> | <div id="progress"><div id="bar"></div></div> | ||
第15行: | 第76行: | ||
<audio id="bgm" src="https://d1rtq9slcl72gh.cloudfront.net/audio/home.mp3" loop></audio> | <audio id="bgm" src="https://d1rtq9slcl72gh.cloudfront.net/audio/home.mp3" loop></audio> | ||
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 10px;"> | <div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 10px;"> |
2025年6月4日 (三) 22:12的版本
歌曲来自b站up主: maltemarten