2013-10-01 121 views
2

我正在使用HTML5的視頻標籤(http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_video_all)。但在播放視頻之前,它會將視頻的第一秒顯示爲圖像;然而,對於我的情況來說,這個圖像是純黑色的;所以我想知道是否可以從視頻中間的某個位置獲得默認圖像(在點擊播放按鈕之前)?HTML5的視頻標籤(默認圖像)

我希望我的問題是清楚的,如果它是不明確的,請問我什麼部分是模糊的,我公司將提供更多的澄清

欣賞它提前。

回答

3

假設你有你想要喲節目的視頻部分的圖像文件,你可以使用poster屬性上<video>標籤,在你的情況下,它會是:

<video width="320" height="240" poster="<default image url>" controls> 
    <source src="movie.mp4" type="video/mp4"> 
    <source src="movie.ogg" type="video/ogg"> 
    Your browser does not support the video tag. 
</video>