xxxxxxxxxx
let button; //ボタン
let input; //テキスト入力
function setup(){
createCanvas(windowWidth,windowHeight);
//ボタンを生成して配置
button=createButton('Hello');
button.position(20,60);
button.mousePressed(hello);
//テキスト入力を生成して配置
input=createInput();
input.position(20,20);
background(0);
colorMode(HSB,360,125,140,100);
}
function hello(){
print('hello');
//画面上に名前を大量に描画
let name=input.value();
for(let i=0; i<10; i++){
rotate(random(2*PI));
textAlign(CENTER);
textSize(random(10,80));
push();
fill(random(180,240),100,100,80);
translate(random(width),random(height));
text('!!',0,0);
pop();
}
}