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


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


D3.js中的d3.timeout()函数用于在特定时间间隔后自动停止该函数或计时器。它与JavaScript中的setTimeOut()函数相同。

用法:

d3.timeout(callback, delay);

参数:此函数接受上述和以下描述的两个参数:

  • callback:该函数是在特定延迟后停止的函数。
  • delay:这是该函数将被停止的时间。

返回值:此函数返回一个对象。

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



范例1:没有延迟时。

HTML

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8"> 
    <meta name="viewport" content= 
    "width=device-width, initial-scale=1.0"> 
</head> 
  
<body> 
    <!-- Fetching from CDN of D3.js -->
    <script type="text/javascript" 
        src="https://d3js.org/d3.v4.min.js"> 
    </script> 
      
    <script> 
        let delay = 0 
        let func = function (e) { 
            console.log(e); 
            console.log("It will run one time" 
                + " with delay equal ", delay); 
        } 
        var timer = d3.timeout(func, delay); 
  
        func = function (e) { 
            console.log(e); 
            console.log( 
                "It will run one time with no delay"); 
        } 
        var timer = d3.timeout(func); 
        console.log("Return Type is:", typeof timer); 
    </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"> 
</head> 
  
<body> 
    <!-- Fetching from CDN of D3.js -->
    <script type="text/javascript" 
        src="https://d3js.org/d3.v4.min.js"> 
    </script> 
      
    <script> 
        let delay = 1000 
        let func = function (e) { 
            console.log(e); 
            console.log("It will run one time" 
                + " with delay equal ", delay); 
        } 
        var timer = d3.timeout(func, delay); 
  
        func = function (e) { 
            console.log(e); 
            console.log("This will be printed first"); 
        } 
        var timer = d3.timeout(func); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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