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


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


d3.InterpolateRound()函数用于返回两个给定数字的插值并将它们四舍五入为最接近的整数。

用法:

d3.interpolateRound(a,b)

参数:该函数接受上述两个参数,并在下面进行描述。

  • a:它是任何数字。
  • b:它是任何数字。

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

下面给出了一些Interpolate.Round()函数的示例。



范例1:

HTML

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, initial-scale=1.0"> 
  <title>D3.js d3.interpolateRound() Function</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> 
    console.log("Type is:",typeof(d3.interpolateRound(4,5))) 
    console.log(d3.interpolateRound(-2636,586)(0.2)) 
    console.log(d3.interpolateRound(3545,96.485)(0.6)) 
    console.log(d3.interpolateRound(24.1545,458)(0.2)) 
  </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>D3.js d3.interpolateRound() Function</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> 
    console.log("Type is:",typeof(d3.interpolateRound(4,5))) 
    console.log(d3.interpolateRound([1,2,3],[2,3,4])(0.2)) 
    console.log(d3.interpolateRound(3545,"green")(0.6)) 
    console.log(d3.interpolateRound("green","red")(0.2)) 
    console.log(d3.interpolateRound(245889,)(0.2)) 
  </script> 
</body> 
</html>

输出:




相关用法


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