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


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


D3.js中的d3.lab()函数用于构造新的Lab颜色,并返回指定颜色的“ l”,“ a”和“ b”属性作为该函数的参数。

用法:

d3.lab(color);

参数:此函数接受指定为CSS颜色的单个参数颜色。


返回值:此函数返回指定CSS颜色的“ l”,“ a”和“ b”属性作为该函数的参数。

以下程序说明了D3.js中的d3.lab()函数:

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.lab() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.lab() function fuction 
        // with some parameters 
        var color1 = d3.lab("red"); 
        var color2 = d3.lab("green"); 
        var color3 = d3.lab("blue"); 
        
        // Getting the LAB properties 
        console.log(color1); 
        console.log(color2); 
        console.log(color3); 
    </script> 
</body> 
  
</html>

输出:

{"l":53.24079414130722, "a":80.09245959641109, "b":67.20319651585301, "opacity":1}
{"l":46.22743146876261, "a":-51.69849552989111, "b":49.8968460010561, "opacity":1}
{"l":32.297010932850725, "a":79.18751984512224, "b":-107.8601617541481, "opacity":1}

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.lab() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.lab() function fuction 
        // without any parameters 
        var color = d3.lab(); 
        
        // Getting the LAB values 
        console.log(color); 
    </script> 
</body> 
  
</html>

输出:

{"l":null, "a":null, "b":null, "opacity":1}

参考: https://devdocs.io/d3~5/d3-color#lab



相关用法


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