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


HTML <picture>用法及代碼示例


HTML中的<picture>標簽用於為web-developers提供靈活性以指定圖像資源。 <picture>標簽包含<source>和<img>標簽。設置屬性值以加載更合適的圖像。 <img>元素用於圖片聲明塊的最後一個子元素。 <img>元素用於為不支持該元素的瀏覽器或沒有匹配的源標簽提供向後兼容性。

用法:

<picture>
    Image and source tag
<picture>

下麵的示例說明了HTML中的<picture>標簽:

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <meta name="viewport" content= 
        "width=device-width, initial-scale=1.0"> 
          
    <title> 
        HTML picture Tag 
    </title> 
      
    <style> 
        body { 
            text-align:center; 
        } 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
      
    <h2>HTML <picture> Tag</h2> 
      
    <picture> 
        <source media="(min-width:700px)" srcset= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190825000042/geeks-221.png"> 
          
        <source media="(min-width:450px)" srcset
="https://media.geeksforgeeks.org/wp-content/uploads/20190802021607/geeks14.png"> 
          
        <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190808102629/geeks15.png"
            alt="GFG" style="width:auto;"> 
    </picture> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <picture>標記支持的瀏覽器:

  • 穀歌瀏覽器38.0
  • Internet Explorer 13.0
  • Firefox 38.0
  • Safari 9.1
  • Opera 25.0




相關用法


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