1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 14:56:48 +01:00

21 lines
369 B
HTML
Raw Normal View History

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