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