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


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


D3.js中的d3.lab()函數用於構造新的Lab顏色,並返回指定顏色的“ l”,“ a”和“ b”屬性作為該函數的參數。

用法:

d3.lab(color);

參數:此函數接受指定為CSS顏色的單個參數顏色。


返回值:此函數返回指定CSS顏色的“ l”,“ a”和“ b”屬性作為該函數的參數。

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

示例1:

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

輸出:

{"l":53.24079414130722, "a":80.09245959641109, "b":67.20319651585301, "opacity":1}
{"l":46.22743146876261, "a":-51.69849552989111, "b":49.8968460010561, "opacity":1}
{"l":32.297010932850725, "a":79.18751984512224, "b":-107.8601617541481, "opacity":1}

示例2:

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

輸出:

{"l":null, "a":null, "b":null, "opacity":1}

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



相關用法


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