📜  p5.js |月()函数

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

p5.js |月()函数

p5.js 中的month()函数用于从系统的时钟中获取当前月份

句法

month()

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

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

function setup() {
  
    //create Canvas of size 270*80  
    createCanvas(270, 80);
}
  
function draw() {
    background(220);
  
    //initialize the parameter with month
    let m = month();
    textSize(16);
    fill(color('red'));
    text("Current Month is : " + m, 50, 30);
}

输出:

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