Piped/src/components/ChaptersBar.vue

45 lines
1.0 KiB
Vue
Raw Normal View History

<template>
<!-- <h2 v-t="'video.chapters'" class="mb-5" /> -->
<div class="flex overflow-x-auto">
<div :key="chapter.start" v-for="chapter in chapters" @click="$emit('seek', chapter.start)" class="chapter">
<img :src="chapter.image" :alt="chapter.title" class="" />
<div class="m-1 flex">
<span class="text-truncate text-sm" :title="chapter.title" v-text="chapter.title" />
<span class="text-sm font-bold text-blue-500" v-text="timeFormat(chapter.start)" />
</div>
</div>
</div>
</template>
2022-01-26 04:39:36 +00:00
<style>
::-webkit-scrollbar {
height: 5px;
}
2022-01-26 04:39:36 +00:00
.chapter {
@apply cursor-pointer;
align-self: center;
padding: 10px;
img {
width: 100%;
height: 100%;
}
}
.text-truncate {
white-space: nowrap;
width: 10em;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
2022-01-26 04:39:36 +00:00
}
</style>
<script setup>
import { defineProps, defineEmits } from "vue";
2022-05-19 21:17:58 +00:00
defineProps({
chapters: Object,
});
defineEmits(["seek"]);
</script>