D3.js中的d3.color()函數用於解析用作函數參數的指定CSS顏色並返回RGB或HSL顏色。如果未指定說明符,則返回null。
用法:
d3.color(color);
參數:此函數接受指定CSS顏色的單個參數顏色。
返回值:此函數返回指定CSS顏色的RGB或HSL顏色值作為該函數的參數。
以下程序說明了D3.js中的d3.color()函數:
範例1:
<!DOCTYPE html>
<html>
<head>
<title>d3.color() function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Calling the d3.color() function function
// with some parameters
var color1 = d3.color("red");
var color2 = d3.color("green");
var color3 = d3.color("blue");
// Getting the RGB or HSL values
console.log(color1);
console.log(color2);
console.log(color3);
</script>
</body>
</html>
輸出:
{"r":255, "g":0, "b":0, "opacity":1} {"r":0, "g":128, "b":0, "opacity":1} {"r":0, "g":0, "b":255, "opacity":1}
範例2:
<!DOCTYPE html>
<html>
<head>
<title>d3.color() function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Calling the d3.color() function function
// without any parameters
var color = d3.color();
// Getting the RGB or HSL values
console.log(color);
</script>
</body>
</html>
輸出:
null
參考: https://devdocs.io/d3~5/d3-color#color
相關用法
- p5.js tan()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js sin()用法及代碼示例
- PHP cos( )用法及代碼示例
- CSS var()用法及代碼示例
- p5.js day()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP pos()用法及代碼示例
- PHP key()用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.color() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。