D3.js中的d3.hsl()函數用於構造新的HSL顏色,並返回指定顏色的HSL屬性作為函數的參數。
用法:
d3.hsl(h, s, l, opacity)
或者
d3.hsl(color)
參數:此函數接受上述和以下描述的一些參數:
- h:用於設置色調值。
- s:用於設置飽和度值。
- l:用於設置亮度值。
- opacity:它用於設置不透明度/透明度。
- color:用於設置顏色名稱或十六進製代碼。
返回值:該函數返回指定CSS顏色的HSL屬性作為該函數的參數。
以下程序說明了D3.js中的d3.hsl()函數:
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.hsl() Function
</title>
<script src=
'https://d3js.org/d3.v4.min.js'>
</script>
</head>
<body>
<script>
// Calling the d3.hsl() function function
// with some parameters
var color1 = d3.hsl("red");
var color2 = d3.hsl("green");
var color3 = d3.hsl("blue");
// Getting the HSL properties
console.log(color1);
console.log(color2);
console.log(color3);
</script>
</body>
</html>
輸出:
{"h":0, "s":1, "l":0.5, "opacity":1} {"h":120, "s":1, "l":0.25098039215686274, "opacity":1} {"h":240, "s":1, "l":0.5, "opacity":1}
範例2:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.hsl() Function
</title>
<script src=
'https://d3js.org/d3.v4.min.js'>
</script>
</head>
<body>
<script>
// Calling the d3.hsl() function function
// without any parameters
var color = d3.hsl();
// 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#hsl
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP pi( )用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.hsl() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。