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


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


D3.js中的interpolateLab()函数用于返回两种给定颜色之间的CIELAB颜色空间插值器。作为参数给出的颜色不需要为CIELAB格式。稍后可以通过内置函数d3.lab()将简单的颜色名称转换为CIELAB格式。

用法:

d3.interpolateLab(a, b);

参数:它采用以下两个参数:

  • a:它是数据类型字符串的颜色的名称。
  • b:它是数据类型字符串的颜色的名称。

返回值:它返回内插器函数。

下面给出了上述函数的一些示例。



范例1:在控制台中打印颜色。

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport"
        content="width=device-width,  
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!--fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    // Printing the return type of the function 
    console.log("Type of the function is:", 
 typeof(d3.interpolateLab("green", "yellow"))) 
    console.log("A RGB string:",  
d3.interpolateLab("green", "yellow")(0.435)) 
    console.log("A RGB string", 
 d3.interpolateLab("green", "white")(0.888996)) 
  </script> 
</body> 
</html>

输出:

范例2:在HTML中使用函数。

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width,  
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
  .box1, .box2{ 
    display:flex; 
    margin-right:40px; 
    width:150px; 
    height:150px; 
  } 
  div{ 
    display:flex; 
  } 
</style> 
<body> 
  D3.interpolateLab() 
  <div> 
    <div class="box1"> 
    </div> 
    <div class="box2"> 
    </div> 
  </div> 
  <!--fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    let b1=document.querySelector(".box1"); 
    let b2=document.querySelector(".box2"); 
    let color=d3.interpolateLab("green", "yellow")(0.435); 
    let color2=d3.interpolateLab("green", "white")(0.888996);  
    b1.style.backgroundColor=color; 
    b2.style.backgroundColor=color2; 
  </script> 
</body> 
</html>

输出:




相关用法


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