pinafore/routes/_components/dialog/VideoDialog.html

31 lines
628 B
HTML
Raw Normal View History

<ModalDialog :label :shown background="#000">
<video poster="{{poster}}"
src="{{src}}"
width="{{width}}"
height="{{height}}"
2018-01-21 18:32:18 +00:00
aria-label="Video: {{description || ''}}"
controls
/>
</ModalDialog>
<style>
:global(#modal-dialog video) {
object-fit: contain;
max-width: calc(100vw - 20px);
2018-02-23 04:04:19 +00:00
max-height: calc(100% - 20px);
overflow: hidden;
}
</style>
<script>
2018-02-05 17:43:45 +00:00
import ModalDialog from './ModalDialog.html'
export default {
components: {
ModalDialog
},
methods: {
async show() {
this.set({shown: true})
}
}
}
</script>