当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js minute()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | minute() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。