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


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


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

用法:

d3.cubehelix(color);

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


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

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

示例1:

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

輸出:

{"h":351.8102617708421, "s":1.9488976453722686, "l":0.2999994453152424, "opacity":1}
{"h":109.95916521883123, "s":1.1193720244160954, "l":0.29615736727228126, "opacity":1}
{"h":236.94217167732103, "s":4.614386868039719, "l":0.10999954957200976, "opacity":1}

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.cubehelix() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.cubehelix() function fuction 
        // without any parameters 
        var color = d3.cubehelix(); 
        
        // 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#cubehelix



相關用法


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