ChatGPTとJavaScriptでクイズゲームを作成しよう!

※本サイトはアフィリエイトリンクを掲載しています。
ChatGpt

こんにちは、みなさん!

今回はAIモデルのChatGPTを活用して、アプリを作成したいと思います。

その名も「クイズゲーム」!

ChatGptを駆使して「クイズゲーム」が作成できるのかを検証してみました。

作成方法としては、HTML,CSS,JavascriptのプログラムをChatGptに書いてもらおうと思います。

 

ChatGPTとは?

ChatGPTは、OpenAIが開発したAI言語モデルです。

その強力な能力を活用して、コーディングからクリエイティブなプロジェクトまで、さまざまなことに取り組むことができます。

 

ChatGPTに聞いてみた

では、ChatGptに「クイズゲーム」を作成してもらえるように、お願いしてみます。
ChatGptの画面でメッセージを入力します。
メッセージは「HTMLとCSSとJavascriptでクイズゲームを作成してください。と入力してみました。
すると結果は・・・

 

ChatGpt返答結果

もちろんです!

以下に、HTML、CSS、JavaScriptを使用してシンプルなクイズゲームを作成するためのコード例を示します。

この例では、3つの質問とそれに対する選択肢、正解を用意しています。必要に応じて質問や選択肢を追加、変更することができます。

<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>クイズゲーム</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      text-align: center;
    }
    .quiz-container {
      max-width: 500px;
      margin: 0 auto;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
  </style>
</head>
<body>
  <div class="quiz-container">
    <h1>クイズゲーム</h1>
    <p id="question">質問文がここに表示されます。</p>
    <div id="choices" class="choices">
      <button onclick="checkAnswer(0)">選択肢1</button>
      <button onclick="checkAnswer(1)">選択肢2</button>
      <button onclick="checkAnswer(2)">選択肢3</button>
    </div>
    <p id="result"></p>
  </div>
  <script>
    const questions = [
      {
         question: "日本の首都は何ですか?",
         choices: ["東京", "大阪", "京都"],
         correctAnswer: 0
      },
      {
        question: "最も高い山はどれですか?",
        choices: ["エベレスト", "富士山", "キリマンジャロ"],
        correctAnswer: 1
      },
      {
        question: "太陽系で最も大きな惑星は何ですか?",
        choices: ["木星", "土星", "天王星"],
        correctAnswer: 0
      }
    ];
    let currentQuestionIndex = 0;
    const questionElement = document.getElementById("question");
    const choicesElement = document.getElementById("choices");
    const resultElement = document.getElementById("result");
    function showQuestion() {
      const currentQuestion = questions[currentQuestionIndex];
      questionElement.textContent = currentQuestion.question;
      choicesElement.innerHTML = "";
      currentQuestion.choices.forEach((choice, index) => {
        const button = document.createElement("button");
        button.textContent = choice;
        button.onclick = () => checkAnswer(index);
        choicesElement.appendChild(button);
      });
    }
    function checkAnswer(selectedIndex) {
      const currentQuestion = questions[currentQuestionIndex];
      if (selectedIndex === currentQuestion.correctAnswer) {
        resultElement.textContent = "正解!次の質問へ進んでください。";
      } else {
        resultElement.textContent = "不正解。もう一度試してみてください。";
      }
      currentQuestionIndex++;
      if (currentQuestionIndex < questions.length) {
        setTimeout(() => {
          resultElement.textContent = "";
          showQuestion();
        }, 1000);
      } else {
        questionElement.textContent = "クイズ終了!お疲れ様でした。";
        choicesElement.innerHTML = "";
      }
    }
    showQuestion();
  </script>
</body>
</html>

 

完成画面

完成した画面がこちらです。

 

更に改良できるか検証

少し見た目がシンプルで味気ないので、ChatGptに下記のようなメッセージでお願いしてみました。

ChatGptにお願いしたメッセージ内容

HTML,CSS,Javascriptでクイズゲームを作成してください。

クイズの選択肢は4択にしてください。

デザインはオシャレにしてください。

ChatGptにメッセージする際は、なるべく具体的な方が良いと思いますが
試しに抽象的な表現で「オシャレにしてください。」とお願いしてみました。
AI的にオシャレが、どう判断されるのでしょう。

 

ChatGptの回答

もちろんです!
以下に、HTML、CSS、JavaScriptを使用してオシャレなデザインの4択クイズゲームを作成するコード例を示します。
この例では3つの質問を含んでいますが、必要に応じて質問や選択肢を追加・変更できます。
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>オシャレなクイズゲーム</title>
  <style>
    body {
      font-family: 'Helvetica', sans-serif;
      background-color: #f2f2f2;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .quiz-container {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
      padding: 20px;
      width: 400px;
    }
    h1 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    p {
      font-size: 18px;
      margin-bottom: 20px;
    }
    .choices button {
      background-color: #3498db;
      border: none;
      border-radius: 5px;
      color: white;
      cursor: pointer;
      font-size: 16px;
      margin: 5px;
      padding: 10px;
      width: 100%;
      transition: background-color 0.3s ease;
    }
    .choices button:hover {
      background-color: #2980b9;
    }
    #result {
      font-size: 18px;
      font-weight: bold;
      margin-top: 15px;
    }
  </style>
</head>
<body>
  <div class="quiz-container">
    <h1>オシャレなクイズゲーム</h1>
    <p id="question">質問文がここに表示されます。</p>
    <div class="choices">
      <button onclick="checkAnswer(0)">選択肢1</button>
      <button onclick="checkAnswer(1)">選択肢2</button>
      <button onclick="checkAnswer(2)">選択肢3</button>
      <button onclick="checkAnswer(3)">選択肢4</button>
    </div>
    <p id="result"></p>
  </div>
  <script>
    const questions = [
      {
        question: "日本の首都は何ですか?",
        choices: ["東京", "大阪", "京都", "名古屋"],
        correctAnswer: 0
      },
      {
        question: "最も高い山はどれですか?",
        choices: ["エベレスト", "富士山", "キリマンジャロ", "アンナプルナ"],
        correctAnswer: 1
      },
      {
        question: "太陽系で最も大きな惑星は何ですか?",
        choices: ["木星", "土星", "天王星", "海王星"],
        correctAnswer: 0
      }
    ];
    let currentQuestionIndex = 0;
    const questionElement = document.getElementById("question");
    const choicesElement = document.querySelector(".choices");
    const resultElement = document.getElementById("result");
    function showQuestion() {
      const currentQuestion = questions[currentQuestionIndex];
      questionElement.textContent = currentQuestion.question;
      choicesElement.innerHTML = "";
      currentQuestion.choices.forEach((choice, index) => {
        const button = document.createElement("button");
        button.textContent = choice;
        button.onclick = () => checkAnswer(index);
        choicesElement.appendChild(button);
      });
    }
    function checkAnswer(selectedIndex) {
      const currentQuestion = questions[currentQuestionIndex];
      if (selectedIndex === currentQuestion.correctAnswer) {
        resultElement.textContent = "正解!次の質問へ進んでください。";
      } else {
        resultElement.textContent = "不正解。もう一度試してみてください。";
      }
      currentQuestionIndex++;
      if (currentQuestionIndex < questions.length) {
        setTimeout(() => {
          resultElement.textContent = "";
          showQuestion();
        }, 1000);
      } else {
        questionElement.textContent = "クイズ終了!お疲れ様でした。";
        choicesElement.innerHTML = "";
      }
    }
    showQuestion();
  </script>
</body>
</html>

 

完成画面

「オシャレ」を上手く反映してくれました。レイアウトも最初の完成画面ではボタンが隣り合わせにくっ付いていたり

画面上部にクイズが表示されていましたが、その辺りの細かいデザインやレイアウトも修正してくれました。

クイズ内容の変更も、配列の中身をカスタマイズすれば良いのでjavascript初心者の方でもChatGptがあれば簡単に作成できそうですね。

 

コメント