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
相关用法
- p5.js cos()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js log()用法及代码示例
- p5.js tan()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.sum()用法及代码示例
- PHP key()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js second()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.cubehelix() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。