So, I have a video playing on the background with autoplay. However, when the page loads and it starts playing, the play symbol appears. Picture:
.video {
position: fixed;
z-index: 2;
object-fit: fill;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
<video class="video" autoplay muted loop>
<source src="assets/video/background.webm" type="video/mp4">
</video>
Is there any way to hide the symbol?
1 post - 1 participant