当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.color()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.color() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。