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


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


D3.js中的d3.utcMilliseconds()函数用于返回协调世界时(UTC)中给定开始时间和结束时间范围内的所有毫秒值的日期。

用法:

d3.utcMilliseconds(start, end, step);

参数:此函数接受以下三个参数:


  • Start:这是给定的开始时间。
  • end:这是给定的结束时间。
  • step:这是用于跳过毫秒的可选值。

返回值:此函数返回给定范围内的所有可能的毫秒数。

以下程序说明了D3.js中的d3.utcMilliseconds()函数:
示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        d3.utcMilliseconds() Function 
    </title> 
    <script src="https://d3js.org/d3.v4.min.js"> 
  </script> 
</head> 
  
<body> 
  
    <script> 
        // Initialising start and end time 
        var start = new Date(2015, 07, 01, 4, 20, 10, 1); 
        var end = new Date(2015, 07, 01, 4, 20, 10, 5); 
  
        // Calling the utcMilliseconds() function 
        // without step value 
        var a = d3.utcMilliseconds(start, end); 
  
        // Getting the millisecond values 
        console.log(a); 
    </script> 
</body> 
  
</html>

输出:

["2015-07-31T22:50:10.001Z", "2015-07-31T22:50:10.002Z", 
"2015-07-31T22:50:10.003Z", "2015-07-31T22:50:10.004Z"]

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        d3.utcMilliseconds() Function 
    </title> 
    <script src="https://d3js.org/d3.v4.min.js"> 
  </script> 
</head> 
  
<body> 
  
    <script> 
        // Initialising start and end time 
        var start = new Date(2015, 07, 01, 4, 20, 10, 1); 
        var end = new Date(2015, 07, 01, 4, 20, 10, 5); 
  
        // Calling the utcMilliseconds() function 
        // with step value 
        var a = d3.utcMilliseconds(start, end, 2); 
  
        // Getting the millisecond values 
        console.log(a); 
    </script> 
</body> 
  
</html>

输出:

["2015-07-31T22:50:10.001Z", "2015-07-31T22:50:10.003Z"]

参考: https://devdocs.io/d3~5/d3-time#timeMilliseconds



相关用法


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