當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Video poster用法及代碼示例


“視頻海報”屬性用於設置或返回視頻的海報屬性的值。海報屬性專門用於在下載視頻時或直到用戶按下播放按鈕之前顯示圖像。如果不包括海報選項,則顯示視頻的第一幀。

用法:
返回海報屬性:

videoObject.poster

設置海報屬性:


videoObject.poster = URL

屬性值

  • URL:用於指定圖像文件的URL。

以下示例程序旨在說明視頻海報屬性:

例:更改視頻的海報圖像。

<!DOCTYPE html> 
<html> 
  
<head> 
  <title>DOM Video poster Property</title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2 style="font-family:Impact"> 
      Video Poster Property 
  </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360" 
           height="240" 
           poster="gfg_200X200.png" 
           controls> 
        
        <source src="samplevideo.mp4"
                type="video/mp4"> 
        <source src="movie.ogg" 
                type="video/ogg"> 
    </video> 
  
    <p>To change the poster image, 
      double click the "Change Poster" button.</p> 
  
    <button ondblclick="My_Video()"
            type="button">Change Poster</button> 
  
    <script> 
        function My_Video() { 
            document.getElementById( 
              "Test_Video").poster = "Unknown.png"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
單擊按鈕之前::

單擊按鈕後:

支持的瀏覽器:

  • 蘋果Safari
  • IE瀏覽器
  • Firefox
  • 穀歌瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Video poster Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。