repod/src/components/Player/ProgressBar.vue
Michel Roux 9d7d08f0dc
All checks were successful
repod / xml (push) Successful in 24s
repod / php (push) Successful in 1m7s
repod / nodejs (push) Successful in 2m24s
repod / release (push) Has been skipped
fix: add a easier-to-see indicator at playhead (close #52)
2024-01-30 17:34:20 +01:00

30 lines
458 B
Vue

<template>
<input class="progress"
:max="player.duration"
min="0"
type="range"
:value="player.currentTime"
@change="(event) => $store.dispatch('player/seek', event.target.value)">
</template>
<script>
export default {
name: 'ProgressBar',
computed: {
player() {
return this.$store.state.player
},
},
}
</script>
<style scoped>
.progress {
height: 4px;
min-height: 4px;
position: absolute;
top: -2px;
width: 99%;
}
</style>