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


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


D3.timer()函数用于在特定时间间隔后运行计时器函数。计时器将在指定的延迟后运行。给出的延迟以毫秒为单位。

用法:

d3.timer(callback, delay);

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

  • callback:这是一个函数。
  • delay:这是执行函数之后的延迟。

返回值:它返回数据类型编号的时间。

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



范例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> 
  let func=function(elapsed) { 
      console.log(elapsed); 
      if (elapsed > 500){ 
        console.log("Timer stopped") 
        timer.stop(); 
      } 
    } 
   var timer = d3.timer(func); 
  </script> 
</body> 
</html>

输出:

范例2:

<!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> 
  .originalColor{ 
    height:100px; 
    width:100px; 
  } 
  .darkerColor{ 
    height:100px; 
    width:100px; 
  } 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
  let func=function(e) { 
      console.log(e); 
      if (e>300){ 
        console.log("Timer stopped") 
        timer.stop(); 
      } 
    } 
    // Delay of 2000ms 
   var timer = d3.timer(func, 2000); 
  </script> 
</body> 
</html>

输出:




相关用法


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