p5.js |分钟()函数
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