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


CSS hue-rotate()用法及代碼示例


hue-rotate()函數是一個內置函數,用於對圖像應用濾鏡以設置圖像的色調旋轉。

用法:

hue-rotate( angle )

參數:該函數接受單參數角度,該角度保持hue-rotation的角度。正色相角會增加色相值,而負角會降低色相值。


以下示例說明了CSS中的hue-rotate()函數:

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>CSS hue-rotate() Function</title>  
      
    <style> 
        h1 { 
            color:green; 
        } 
        body { 
            text-align:center; 
        } 
        .hue_rotate_effect { 
            filter:hue-rotate(100deg); 
        } 
    </style> 
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
      
    <h2>CSS hue-rotate() function</h2> 
      
    <img class="hue_rotate_effect" src=  
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
        alt="GeeksforGeeks logo">  
</body>  
  
</html>                    

輸出:

支持的瀏覽器:hue-rotate()函數支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • 蘋果瀏覽器
  • Opera


相關用法


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