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


HTML Style filter用法及代碼示例


HTML DOM中的DOM樣式過濾器屬性用於向圖像添加視覺效果或過濾器效果。

用法:

  • 返回過濾器屬性:
    object.style.filter
  • 設置過濾器屬性:
    object.style.filter = "none| blur() |brightness() |contrast() | 
    drop-shadow() |grayscale() |hue-rotate() |invert() |opacity() |
    saturate() | sepia()"

函數:


過濾 描述
none 它將效果設置為無。
blur 它將效果設置為模糊。
brightness(%) 調節亮度。
contrast(%) 調整圖像的對比度。
drop-shadow 設置效果為陰影。
h-shadow 設置水平陰影。
v-shadow 它設置垂直陰影。
blur 它以像素為單位設置模糊效果。
spread 它將圖像設置為增長和擴展。
color 它將顏色添加到陰影中。
grayscale(%) 它將圖像設置為灰度。
hue-rotate(deg) 它在圖像上設置色調旋轉。
invert(%) 它將圖像中的樣本反轉。
opacity(%) 它設置圖像的不透明度級別。
saturate(%) 它會使圖像飽和。
sepia(%) 它將圖像設置為棕褐色。

返回值:它返回具有附加視覺效果的圖像。

示例1:將濾鏡屬性設置為灰度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style filter Property 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1> 
          GeeksforGeeks 
        </h1> 
        <button onclick="img()">Press</button> 
  
        <h4> 
          Clicking on the 'Press' button will  
          set the filter property to grayscale. 
        </h4> 
  
        <img id="gfg" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190401113144/gfg_200X2001.png" 
             alt="Mountain View" width="300" height="250"> 
  
        <script> 
            function img() { 
  
                document.getElementById( 
                    "gfg").style.filter = "grayscale(100%)"; 
  
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:將過濾器屬性設置為不透明度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style filter Property 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1> 
          GeeksforGeeks 
      </h1> 
        <button onclick="img()"> 
            Press 
        </button> 
  
        <h4> 
          Clicking on the 'Press' button will  
          set the filter property to grayscale. 
        </h4> 
  
        <img id="gfg" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190401113144/gfg_200X2001.png" 
             alt="Mountain View" width="300" height="250"> 
  
        <script> 
            function img() { 
  
                document.getElementById( 
                    "gfg").style.filter = "opacity(50%)"; 
  
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例3:將過濾器屬性設置為反轉。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style filter Property 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1> 
          GeeksforGeeks 
      </h1> 
        <button onclick="img()"> 
            Press 
        </button> 
  
        <h4> 
              Clicking on the 'Press' button will  
              set the filter property to grayscale. 
      </h4> 
  
        <img id="gfg" src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190401113144/gfg_200X2001.png" 
             alt="Mountain View" width="300" height="250"> 
  
        <script> 
            function img() { 
  
                document.getElementById( 
                    "gfg").style.filter = "invert(100%)"; 
  
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

瀏覽器支持:下麵列出了HTML DOM樣式過濾器屬性支持的瀏覽器:

  • 穀歌瀏覽器53.0
  • Internet Explorer 13.0
  • Firefox 35.0
  • Opera 40.0
  • Safari 9.1


相關用法


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