AnkurVerma
New Coder
Hi, I have 5 videos for desktop, mobile, tablet, large screen and extra-large. When I used media query in the source code for all resolution it's not working. When i checked in preview it's only showing the mobile media query video.
Please check the below code. Anyone have a solution for this problem, please help me out on this.
Please check the below code. Anyone have a solution for this problem, please help me out on this.
HTML:
<video poster="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" data-test-id="hero-asset-video" class="video__Element-sc-3szlca-0 iTLoIB Video-f9cu0r-0 bIjpNC" playsinline="">
<source src="video.mp4" media="all and (min-width:481px)">
<source src="video.mp4" type="video/mp4" media="all and (min-width:768px)">
<source src="video.mp4" type="video/mp4" media="all and (min-width:992px)">
<source src="video.mp4" type="video/mp4" media="all and (min-width:1200px)">
<source src="video.mp4" type="video/mp4" media="all and (min-width:1400px)">
</video>
Last edited by a moderator: