I'm trying to add a video in the background of the site, everything works in the computer browser even with the responsive one
But when I open the site on my cell phone I don't see the video.. There is a black screen instead
#myVideo {
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
<video autoPlay muted loop id="myVideo">
<source src="https://firebasestorage.googleapis.com/v0/b/lumpinee-429bb.appspot.com/o/sd.mp4?alt=media&token=c971004a-30bd-4b8d-8d3b-e62af29bd1ae" type="video/mp4" />
</video>
I work with react
Thank you