2018-03-31 17:45:11 +00:00
|
|
|
<video
|
2018-04-19 17:04:44 +00:00
|
|
|
class="autoplay-video {{className || ''}}"
|
2018-03-31 17:45:11 +00:00
|
|
|
aria-label="{{ariaLabel || ''}}"
|
2018-04-19 17:04:44 +00:00
|
|
|
style="background-image: url({{poster}});"
|
2018-03-31 17:45:11 +00:00
|
|
|
:poster
|
|
|
|
:width
|
|
|
|
:height
|
|
|
|
:src
|
|
|
|
autoplay
|
|
|
|
muted
|
|
|
|
loop
|
|
|
|
webkit-playsinline
|
|
|
|
playsinline
|
2018-04-19 17:04:44 +00:00
|
|
|
/>
|
|
|
|
<style>
|
|
|
|
.autoplay-video {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
</style>
|