MediaWiki:Common.js:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
第4行: | 第4行: | ||
audio.loop = true; | audio.loop = true; | ||
audio.id = 'bgm'; | audio.id = 'bgm'; | ||
const player = document.createElement('div'); | const player = document.createElement('div'); | ||
第10行: | 第9行: | ||
<button onclick="document.getElementById('bgm').play()">▶ 播放</button> | <button onclick="document.getElementById('bgm').play()">▶ 播放</button> | ||
<button onclick="document.getElementById('bgm').pause()">⏸ 暂停</button> | <button onclick="document.getElementById('bgm').pause()">⏸ 暂停</button> | ||
<div style="flex-grow:1; height:6px; background:#444; border-radius:3px; overflow:hidden;"> | <div style="flex-grow:1; height:6px; background:#444; border-radius:3px; overflow:hidden;"><div id="bar" style="height:6px;width:0%;background:#66f;"></div></div> | ||
`; | `; | ||
player.style.cssText = "position:fixed;bottom:10px;right:10px;z-index:9999;background:#111;color:white;padding:10px 15px;border-radius:10px;display:flex;gap:10px;align-items:center;box-shadow:0 0 10px #000;font-size:14px"; | player.style.cssText = "position:fixed;bottom:10px;right:10px;z-index:9999;background:#111;color:white;padding:10px 15px;border-radius:10px;display:flex;gap:10px;align-items:center;box-shadow:0 0 10px #000;font-size:14px"; | ||
document.body.appendChild(audio); | |||
document.body.appendChild(player); | document.body.appendChild(player); | ||
setInterval(function(){ | |||
setInterval(function () { | |||
if (!audio.duration) return; | if (!audio.duration) return; | ||
const percent = (audio.currentTime / audio.duration) * 100; | const percent = (audio.currentTime / audio.duration) * 100; |
2025年6月4日 (三) 23:34的版本
mw.loader.using('mediawiki.util', function () {
const audio = document.createElement('audio');
audio.src = 'https://d1rtq9slcl72gh.cloudfront.net/audio/home.mp3';
audio.loop = true;
audio.id = 'bgm';
const player = document.createElement('div');
player.innerHTML = `
<button onclick="document.getElementById('bgm').play()">▶ 播放</button>
<button onclick="document.getElementById('bgm').pause()">⏸ 暂停</button>
<div style="flex-grow:1; height:6px; background:#444; border-radius:3px; overflow:hidden;"><div id="bar" style="height:6px;width:0%;background:#66f;"></div></div>
`;
player.style.cssText = "position:fixed;bottom:10px;right:10px;z-index:9999;background:#111;color:white;padding:10px 15px;border-radius:10px;display:flex;gap:10px;align-items:center;box-shadow:0 0 10px #000;font-size:14px";
document.body.appendChild(audio);
document.body.appendChild(player);
setInterval(function(){
if (!audio.duration) return;
const percent = (audio.currentTime / audio.duration) * 100;
document.getElementById('bar').style.width = percent + '%';
}, 300);
});