0
我想寫一個網站,在桌面視圖上有一個視頻背景(這已經是inplace和功能);但在移動設備上加載時會顯示圖像。桌面上的視頻背景,移動圖片可能嗎?
<div class="main">
<video autoplay muted loop>
<source src="Main-Stream.mp4" type="video/mp4">
</video>
<div class="content container">
<h1>Discover the Lifetarian Way</h1>
<a href="x" class="btn">Purchase the Book</a>
</div>
</div>
當然,使用媒體查詢 – j08691