私は JavaScript が初めてで、あなたのアドベンチャー ゲームを作成しようとしています。p5.js で DOM を使用しています。「あなたのヒーロー名」を入力した後、送信ボタンが消えてほしいです。また、ゲームの残りの部分で多肢選択式の回答タイプを設定してほしいので、その出発点を見つけるのを手伝っていただけると非常に助かります. ありがとうございました。
var input, button, greeting;
var a;
function setup() {
// create canvas
createCanvas(710, 400);
input = createInput();
input.position(20, 100);
button = createButton('submit');
button.position(200, 150);
button.mousePressed(greet);
greeting = createElement('h2', 'what is the name of your hero?');
greeting.position(20, 5);
textAlign(CENTER)
textSize(50);
}
function greet() {
var name = input.value();
greeting.html(name+' lives in a peaceful and beautiful village called Scranton. The only village not yet completely ravaged by the chaos and war surrounding daily life everywhere else.');
input.value('');
text(name, 0, 0);
}