p5.js中的minute()函數用於返回係統時鍾中的當前分鍾。 minute()函數的值介於0到59之間。
用法:
minute()
參數:該函數不接受任何參數。
返回值:此函數返回代表分鍾時間的整數值。
以下示例程序旨在說明p5.js中的minute()函數:
例:本示例使用minute()函數返回係統時鍾中的當前分鍾。
function setup() {
// Create Canvas of size 270*80
createCanvas(270, 80);
}
function draw() {
// Set the background color
background(220);
// Initialize the parameter with
// current minute
let m = minute();
// Set the text font size
textSize(16);
// Set the text color
fill(color('red'));
// Display the result
text("Current minute is : "+m, 50, 30);
}
輸出:
參考: https://p5js.org/reference/#/p5/minute
相關用法
- d3.js d3.max()用法及代碼示例
- CSS var()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- p5.js value()用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- CSS hsl()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- PHP dir()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | minute() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。