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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。