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
相关用法
- HTML input month用法及代码示例
- HTML Input Month max用法及代码示例
- HTML Input Month name用法及代码示例
- HTML DOM Input Month用法及代码示例
- HTML Input Month min用法及代码示例
- HTML Input Month value用法及代码示例
- HTML Input Month stepDown()用法及代码示例
- HTML Input Month type用法及代码示例
- HTML Input Month form用法及代码示例
- HTML Input Month readOnly用法及代码示例
- HTML Input Month autofocus用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | month() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。