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


d3.js d3.hsl()用法及代碼示例


D3.js中的d3.hsl()函數用於構造新的HSL顏色,並返回指定顏色的HSL屬性作為函數的參數。

用法:

d3.hsl(h, s, l, opacity)

或者


d3.hsl(color)

參數:此函數接受上述和以下描述的一些參數:

  • h:用於設置色調值。
  • s:用於設置飽和度值。
  • l:用於設置亮度值。
  • opacity:它用於設置不透明度/透明度。
  • color:用於設置顏色名稱或十六進製代碼。

返回值:該函數返回指定CSS顏色的HSL屬性作為該函數的參數。

以下程序說明了D3.js中的d3.hsl()函數:

範例1:

<!DOCTYPE html> 
<html> 
  
 <head> 
    <title> 
        D3.js | d3.hsl() Function 
    </title> 
  
    <script src= 
        'https://d3js.org/d3.v4.min.js'> 
    </script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.hsl() function function 
        // with some parameters 
        var color1 = d3.hsl("red"); 
        var color2 = d3.hsl("green"); 
        var color3 = d3.hsl("blue"); 
      
        // Getting the HSL properties 
        console.log(color1); 
        console.log(color2); 
        console.log(color3); 
    </script> 
</body> 
  
</html>

輸出:

{"h":0, "s":1, "l":0.5, "opacity":1}
{"h":120, "s":1, "l":0.25098039215686274, "opacity":1}
{"h":240, "s":1, "l":0.5, "opacity":1}

範例2:

<!DOCTYPE html> 
<html> 
  
 <head> 
    <title> 
        D3.js | d3.hsl() Function 
    </title> 
  
    <script src= 
        'https://d3js.org/d3.v4.min.js'> 
    </script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.hsl() function function 
        // without any parameters 
        var color = d3.hsl(); 
      
        // Getting the HSL values 
        console.log(color); 
    </script> 
</body> 
  
</html>

輸出:

{"h":null, "s":null, "l":null, "opacity":1}

參考: https://devdocs.io/d3~5/d3-color#hsl



相關用法


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