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


HTML poster屬性用法及代碼示例


HTML海報屬性用於在下載視頻或用戶單擊播放按鈕時顯示圖像。如果未設置此圖像,則它將視頻的第一幀作為海報圖像。

適用的:
它主要用於<video>元素。

用法:

<video poster="URL">

屬性值:它包含一個指定源圖像鏈接的單個值URL。以下列出了兩種類型的URL鏈接:

  • Absolute URL:它指向另一個網頁。
  • Relative URL:它指向同一網頁的其他文件。

例:



<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML video poster Attribute 
  </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;"> 
          GeeksforGeeks 
      </h1> 
  
        <h3>HTML poster Attribute</h3> 
  
        <video width="400"
               height="200" 
               controls poster= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190627130930/a218.png"> 
            
            <source src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190616234019/Canvas.move_.mp4"
                    type="video/mp4"> 
            <source src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190616234019/Canvas.move_.ogg" 
                    type="video/ogg"> 
        </video> 
    </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML poster屬性支持的瀏覽器:

  • 穀歌瀏覽器4.0
  • Internet Explorer 9.0
  • Firefox 3.5
  • 蘋果Safari 4.0
  • Opera 10.5




相關用法


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