p5.js中的millis()函數用於返回從啟動程序起的毫秒數。此函數主要用於定時事件和動畫序列。
用法:
millis()
參數:該函數不接受任何參數。
返回值:它返回從啟動程序開始的毫秒數。
以下示例程序旨在說明p5.js中的millis()函數:
例:本示例使用millis()函數返回從啟動程序開始的毫秒數。
function setup() {
// Create Canvas of size 450*80
createCanvas(450, 80);
}
function draw() {
// Set the background color
background(220);
// Initialize the parameter with
// current milliseconds
let ml = millis();
// Set the font size
textSize(16);
// Set the font color
fill(color('red'));
// Display result
text("Current Milli Seconds is : "
+ ml, 50, 30);
}
輸出:
參考: https://p5js.org/reference/#/p5/millis
相關用法
- PHP abs()用法及代碼示例
- p5.js red()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js cos()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js max()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | millis() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。