作品一覧に戻る
物体を召喚せよ

物体を召喚せよ

秋山宗太郎 04/03 11:53
アプリを動かす
コードを見る
<button id="summonBtn">召喚!</button>
<div id="stage"></div>
const btn = document.querySelector('#summonBtn');
const stage = document.querySelector('#stage');

btn.addEventListener('click', function() {
  const spirit = document.createElement('p');
  spirit.textContent = '✨ 精霊が現れた!';
  stage.appendChild(spirit);
});