mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
add time to now playing card
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<template>
|
||||
|
||||
<div class="hotkeys">
|
||||
<div class="image ctrl-btn" id="previous" @click="q.playPrev"></div>
|
||||
<div
|
||||
@@ -17,6 +18,7 @@ const q = useQStore();
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
.hotkeys {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
<input
|
||||
id="progress"
|
||||
type="range"
|
||||
:value="q.track.current_time"
|
||||
:value="q.duration.current"
|
||||
min="0"
|
||||
max="100"
|
||||
:max="q.duration.full"
|
||||
step="0.1"
|
||||
@change="seek()"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user