D3.js中的d3.timeMilliseconds()函數用於返回在給定的開始和結束時間範圍內具有日期的所有毫秒數。
用法:
d3.timemMilliseconds(start, end, step);
參數:該函數接受以下三個參數:
- Start:這是給定的開始時間。
- end:這是給定的結束時間。
- step:這是用於跳過毫秒的可選值。
返回值:此函數返回給定範圍內的所有可能的毫秒數。
以下程序說明了D3.js中的d3.timeMilliseconds()函數:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>
d3.timeMilliseconds() 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 timeMilliseconds() function
// without step value
var a = d3.timeMilliseconds(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.timeMilliseconds() 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 timeMilliseconds() function
// with step value
var a = d3.timeMilliseconds(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
相關用法
- p5.js cos()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js tan()用法及代碼示例
- PHP pos()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP each()用法及代碼示例
- PHP each()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.timeMilliseconds() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。