このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の getURLParam関数を説明します。
getURLParams()
説明文
現在のURLパラメータをオブジェクトとして取得します。
構文
getURLParams()
戻り値
オブジェクト:URLパラメータ
例
//例:http://p5js.org?year=2014&month=May&day=15
function setup(){
let params = getURLParams();
text(params.day, 10, 20); // "15"
text(params.month, 10, 40); // "May"
text(params.year, 10, 60); // "2014"
}
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。