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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。