Make progress bar move smoother

Add a transition to the progress slider to make it move smoother in
between slider steps while playing the video. The steps were especially
noticeable when playing shorter videos.
This commit is contained in:
Lenny Angst
2025-12-22 14:26:02 +01:00
parent 71ed7d4fa9
commit b9cad4422a
@@ -974,7 +974,7 @@
{#if !hideControls}
<div id="player-controls">
<article class="round" style="width: 100%;padding: 0;height: 10px;">
<label class="slider max">
<label id="progress-slider" class="slider max">
{#key playerCurrentTime}
<input
oninput={handleTimeChange}
@@ -1297,6 +1297,10 @@
transition: opacity 2s ease;
}
#progress-slider > span {
transition: 0.25s;
}
#player-container:focus-within #player-controls,
#player-container:active #player-controls,
#player-container:hover #player-controls {