當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js second()用法及代碼示例


p5.j​​s中的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



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | second() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。