You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment I use an <input type="range"> to seek/navigate the time of the currently playing song. This feels like an incorrect approach, because it's really a form element rather than a control mechanism.
Within Svelte though, it's very easy to bind to the input's value so that user's can select a certain point of a song, and to have the value update as the song plays (without manually animating it). I really don't want to have to implement this control myself.
The text was updated successfully, but these errors were encountered:
At the moment I use an
<input type="range">
to seek/navigate the time of the currently playing song. This feels like an incorrect approach, because it's really a form element rather than a control mechanism.Within Svelte though, it's very easy to bind to the input's value so that user's can select a certain point of a song, and to have the value update as the song plays (without manually animating it). I really don't want to have to implement this control myself.
The text was updated successfully, but these errors were encountered: