'commit'
This commit is contained in:
@@ -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';
|
||||
|
Reference in New Issue
Block a user