当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。