1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 07:28:43 +01:00

21 lines
365 B
HTML
Raw Normal View History

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