我製作了一個帶有HTML5視頻的網站,該視頻包含海報attritube和視頻截圖。這是因爲不支持自動播放以防止過度使用移動數據的智能手機問題。因此,它將在移動平臺上顯示屏幕截圖,而不是視頻。Android中的HTML5視頻背景顯示爲黑色
我有一個ID爲「content」的div中的所有網頁內容。一切正常,除非網站有需要滾動的信息。如果您刪除了視頻的固定位置,它就會起作用,但當然網站會混亂,因爲視頻必須設置爲固定位置,這樣我才能向下滾動頁面而不會使視頻移動。
#video_background {
position: fixed; \t
bottom: 0px;
right: 0px;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1000;
overflow: hidden;
}
#content { \t
position: absolute; \t
text-align: left; \t
width: 100%; \t
padding: 15px; \t
}
<video id="video_background" poster="images/video.jpg" preload="auto" loop="loop" muted="muted" autoplay="true" volume="0"> \t
<source src="webvid_4.mp4" type="video/mp4">
Video not supported
</video>
<div id="content"> \t
// all information goes here. If too much for the screen, the background goes black.
</div>
如果我重新載入頁面,它顯示了半秒的海報圖像和變黑。
有關如何使此工作的任何提示?或者,也許是一種解決方法?