📜  p5.js |第二()函数

📅  最后修改于: 2022-05-13 01:56:27.304000             🧑  作者: Mango

p5.js |第二()函数

p5.js 中的second()函数用于返回系统时钟的当前秒数。 second()函数的值介于 0 到 59 之间。

句法:

second()

参数:该函数不接受任何参数。

返回值:此函数返回一个整数值,表示当前秒。

下面的程序说明了 p5.js 中的 second()函数:

示例:此示例使用 second()函数返回当前秒数。

function setup() {
  
    // Create Canvas of size 270*80
    createCanvas(270, 80);
}
  
function draw() {
      
    // Set the background color
    background(220);
      
    // Store value of second() function
    // to the variable
    let s = second();
      
    // Set the font size
    textSize(16);
      
    // Set the font color
    fill(color('red'));
      
    // Display result 
    text("Current Second is : " + s, 50, 30);
}

输出:

参考: https://p5js.org/reference/#/p5/second