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


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


p5.j​​s中的year()函数用于从系统时钟返回当前年份。它返回一个代表当前年份的整数值。

用法:

year()

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


返回值:它返回一个代表当前年份的整数值。

以下示例程序旨在说明p5.js中的year()函数:

例:本示例使用year()函数从系统时钟返回当前年份。

function setup() { 
  
    // Create Canvas of given size 
    createCanvas(270, 80); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
      
    // Initialize the parameter with current year 
    let y = year(); 
      
    // Set the font size 
    textSize(16); 
      
    // Set the font color 
    fill(color('red')); 
      
    // Display result 
    text("Current Year is : " + y, 50, 30); 
}

输出:

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



相关用法


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