2017-09-25 593 views
-2

我已經在html中嵌入了視頻。這裏是代碼如何更改嵌入視頻的默認縮略圖(不是YouTube視頻)

<div > 
<video width="400" controls> 
    <source src="videos/myvideo.mp4" type="video/mp4"> 
</video>  
</div> 

我想更改視頻的默認縮略圖。任何想法如何做到這一點?

+1

您是否嘗試過先搜索互聯網?字面上第一個搜索結果:https://www.w3schools.com/tags/att_video_poster.asp – orhtej2

回答

0

將poster =「placeholder.png」添加到視頻標籤。

<video width="400" height="255" poster="placeholder.png" controls> 
<source src="videos/myvideo.mp4" type="video/mp4"> 
</video>