Hello everyone, I have a video that normally runs in css background on the PC. But when I access the site by tablets or ipads it does not run.
See the code:
<video autoplay loop poster="torre.jpg" class="bg_video">
<source src="bg.webm" type="video/webm">
<source src="bg.mp4" type="video/mp4">
</video>
CSS:
.bg_video{
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1000;
background: url(torre.jpg) no-repeat;
background-size: cover;
}
I have already put it in the format as requested by MP4 and WEBM, but nothing solves.