diff --git a/webui/index.html b/webui/index.html
index 9bc9b0c..8fc1451 100644
--- a/webui/index.html
+++ b/webui/index.html
@@ -656,6 +656,9 @@
Lyrics
);
const progressPercent =
(audioPlayer.currentTime / audioPlayer.duration) * 100;
+ document.getElementById(
+ "progress"
+ ).style.width = `${progressPercent}%`;
lrc.play(currentTime);
};
audioPlayer.onpause = () => {