added a simple fix to fix the progress bar
This commit is contained in:
parent
93c65bc7c4
commit
3cd079bdf9
1 changed files with 5 additions and 0 deletions
|
@ -61,6 +61,11 @@ progressBar.addEventListener('wheel', function (event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
progressBar.addEventListener("input", function (event) {
|
||||||
|
const newTime = (progressBar.value / 100) * videoPlayer.duration;
|
||||||
|
videoPlayer.currentTime = newTime;
|
||||||
|
});
|
||||||
|
|
||||||
document.getElementById("prev").addEventListener("click", () => {
|
document.getElementById("prev").addEventListener("click", () => {
|
||||||
currentSongIndex = (currentSongIndex - 1 + songs.length) % songs.length;
|
currentSongIndex = (currentSongIndex - 1 + songs.length) % songs.length;
|
||||||
loadSong(currentSongIndex);
|
loadSong(currentSongIndex);
|
||||||
|
|
Loading…
Add table
Reference in a new issue