Video Player Component
<template>
<div class="trailer-bg">
<video
id="trailer"
autoplay
loop
controls
class="cld-video-player trailer-bg__video">
</video>
<div class="trailer-content">
<h1 class="is-size-1 has-text-weight-bold">{{movie.title || 'Black Panther'}}</h1>
</div>
</div>
</template>
<script>
// We will add scripts in the
// next title
</script>
<style>
.trailer-bg {
position: relative;
}
.trailer-bg__video {
position: absolute;
width: 100%;
outline: none;
}
.trailer-content {
position: absolute;
top: 30%;
left: 200px;
}
</style>Last updated