This commit is contained in:
2025-08-21 16:39:15 +08:00
parent 9063c5fdec
commit ca119a8413

View File

@@ -129,6 +129,13 @@
statusMessage.style.backgroundColor = '#e8f5e9';
statusMessage.style.borderColor = '#a5d6a7';
// 确保进度为100%
progress = 100;
const progressFill = document.getElementById('progressFill');
const progressText = document.getElementById('progressText');
progressFill.style.width = `${progress}%`;
progressText.textContent = `${Math.round(progress)}%`;
// 显示播放器
const playerContainer = document.getElementById('playerContainer');
playerContainer.style.display = 'block';