pinafore/routes/_components/dialog/components/VideoDialog.html

38 lines
729 B
HTML
Raw Normal View History

2018-04-05 05:33:17 +02:00
<ModalDialog
{id}
{label}
2018-04-05 05:33:17 +02:00
background="var(--muted-modal-bg)"
muted="true"
className="video-modal-dialog"
2018-04-01 03:46:44 +02:00
>
<video {poster}
{src}
{width}
{height}
aria-label="Video: {description || ''}"
controls
/>
</ModalDialog>
<style>
2018-04-01 03:46:44 +02:00
:global(.video-modal-dialog video) {
object-fit: contain;
max-width: calc(100vw - 20px);
2018-02-23 05:04:19 +01:00
max-height: calc(100% - 20px);
overflow: hidden;
}
</style>
<script>
2018-02-05 18:43:45 +01:00
import ModalDialog from './ModalDialog.html'
import { show } from '../helpers/showDialog'
import { oncreate } from '../helpers/onCreateDialog'
export default {
oncreate,
components: {
ModalDialog
},
methods: {
show
}
}
</script>