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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user