D3.js中的d3.lch()函数用于构造新的LCH颜色,并返回指定颜色的l,c和h属性作为该函数的参数。
用法:
d3.lch(color);
参数:该函数接受单个参数color用于指定CSS颜色。
返回值:此函数返回指定CSS颜色的l,c和h属性作为该函数的参数。
以下程序说明了D3.js中的d3.lch()函数:
范例1:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<script src=
"https://d3js.org/d3-color.v1.min.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">GeeksForGeeks</h1>
<h3>D3.js | d3.lch() Function</h3>
<script>
// Calling the d3.lch() function
// fuction with some parameters
var color1 = d3.lch("red");
var color2 = d3.lch("green");
var color3 = d3.lch("blue");
// Getting the lch properties
console.log(color1);
console.log(color2);
console.log(color3);
</script>
</center>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<script src=
"https://d3js.org/d3-color.v1.min.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">GeeksForGeeks</h1>
<h3>D3.js | d3.lch() Function</h3>
<script>
// Calling the d3.lch() function
// fuction with some parameters
var color = d3.lch();
// Getting the LCH properties
console.log(color);
</script>
</center>
</body>
</html>
输出:
相关用法
- PHP Ds\Set xor()用法及代码示例
- PHP chr()用法及代码示例
- p5.js pan()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- d3.js zip()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js dsv()用法及代码示例
- d3.js tsv()用法及代码示例
- d3.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- d3.js d3.min()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 D3.js lch() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。