bday2020/ui/src/components/BDay.vue

39 lines
894 B
Vue
Raw Normal View History

2020-09-05 16:25:28 +00:00
<template>
2020-09-06 00:44:39 +00:00
<div class="bday">
<h1>Alles Gute zu Deinem Geburtstag!</h1>
2020-09-06 00:58:00 +00:00
<vue-plyr :options="plyr_options">
2020-09-06 00:44:39 +00:00
<video poster="../assets/poster.png" autoplay="true">
<source src="/fake_api/part1_240.mp4" type="video/mp4" size="240" />
<source src="/fake_api/part1_360.mp4" type="video/mp4" size="360" />
<source src="/fake_api/part1_480.mp4" type="video/mp4" size="480" />
</video>
</vue-plyr>
</div>
2020-09-05 16:25:28 +00:00
</template>
<script>
export default {
2020-09-06 00:44:39 +00:00
name: "BDay",
2020-09-06 00:58:00 +00:00
data: () => ({
plyr_options: {
clickToPlay: false,
keyboard: { focused: false, global: false },
controls: ["mute", "volume", "settings", "airplay", "fullscreen"],
settings: ["quality"],
},
}),
2020-09-06 00:44:39 +00:00
mounted: () => {
document.title = "Herzlichen Glückwunsch!";
},
};
2020-09-05 16:25:28 +00:00
</script>
<style scoped>
div.bday {
2020-09-06 00:44:39 +00:00
margin: auto;
max-width: 850px;
2020-09-05 16:25:28 +00:00
}
2020-09-05 17:28:34 +00:00
</style>