-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuizGame01.html
287 lines (258 loc) · 7.67 KB
/
QuizGame01.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<!DOCTYPE html>
<html>
<head>
<title>Quiz Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.question {
font-size: 20px;
margin-bottom: 10px;
}
.choices {
list-style-type: none;
padding: 0;
}
.choice {
margin-bottom: 5px;
}
.choice input[type="radio"] {
margin-right: 5px;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
.question {
font-size: 20px;
margin-bottom: 10px;
}
.choices {
list-style-type: none;
padding: 0;
}
.choice {
margin-bottom: 5px;
}
.choice input[type="radio"] {
margin-right: 5px;
}
#result-message {
font-size: 24px;
text-align: center;
margin-top: 20px;
}
/* Submit ボタンのCSS */
#submit-button {
background-color: #4CAF50; /* 背景色 */
color: white; /* 文字色 */
padding: 10px 20px; /* 内側のパディング */
border: none; /* 枠線なし */
border-radius: 4px; /* 角丸 */
cursor: pointer; /* マウスカーソルをポインターにする */
font-size: 16px; /* フォントサイズ */
}
#submit-button:hover {
background-color: #45a049; /* マウスオーバー時の背景色 */
}
/* 設問のCSS */
.question {
font-size: 20px; /* フォントサイズ */
margin-bottom: 10px; /* 下部のマージン */
font-weight: bold; /* 太字 */
color: #333; /* 文字色 */
background-color: #f9f9f9; /* 背景色 */
padding: 10px; /* 内側のパディング */
border-radius: 4px; /* 角丸 */
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
.question {
font-size: 16px; /* フォントサイズ */
padding: 8px; /* 内側のパディング */
}
}
/* ページ全体のレスポンシブ対応 */
body {
max-width: 800px; /* 最大幅 */
margin: 0 auto; /* 中央寄せ */
padding: 20px; /* 内側のパディング */
}
/* ヘッダーとフッターのレスポンシブ対応 */
header, footer {
text-align: center; /* 中央寄せ */
}
/* クイズコンテナーのレスポンシブ対応 */
#quiz-container {
max-width: 600px; /* 最大幅 */
margin: 0 auto; /* 中央寄せ */
}
/* 結果コンテナーのレスポンシブ対応 */
#result-container {
max-width: 600px; /* 最大幅 */
margin: 0 auto; /* 中央寄せ */
}
#restart-button {
background-color: #ff0000; /* 例えば、赤色 */
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
#restart-button:hover {
background-color: #cc0000; /* 例えば、明るい赤色 */
}
#question-info {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
#current-question-number,
#total-questions {
font-size: 18px;
margin-right: 5px;
}
</style>
</head>
<body>
<h1>クイズゲーム</h1>
<div id="question-info">
<span id="current-question-number">1</span> / <span id="total-questions">10</span>
</div>
<div id="quiz-container">
<div class="question"></div>
<ul class="choices"></ul>
<button id="submit-button">Submit</button>
</div>
<div id="result-container" style="display: none;">
<h2 id="result-message"></h2>
<button id="restart-button">Restart</button>
</div>
<script>
const questions = [
{
question: "フランスの首都は何ですか?",
choices: ["パリ", "ロンドン", "ベルリン", "マドリード"],
answer: "パリ"
},
{
"question": "太陽系で一番大きな惑星は何ですか?",
"choices": ["地球", "火星", "木星", "金星"],
"answer": "木星"
},
{
"question": "エジプトの首都はどこですか?",
"choices": ["カイロ", "アテネ", "ローマ", "アルジェ"],
"answer": "カイロ"
},
{
"question": "光の速さはおよそどれくらいですか?",
"choices": ["30,000 km/s", "300,000 km/s", "3,000 km/s", "300 km/s"],
"answer": "300,000 km/s"
},
{
"question": "E=mc² の公式を提唱したのは誰ですか?",
"choices": ["アイザック・ニュートン", "アルベルト・アインシュタイン", "ニコラ・テスラ", "スティーブン・ホーキング"],
"answer": "アルベルト・アインシュタイン"
},
{
"question": "日本の最高峰である山はどれですか?",
"choices": ["富士山", "北岳", "槍ヶ岳", "白馬岳"],
"answer": "富士山"
},
{
"question": "イタリアの首都はどこですか?",
"choices": ["ローマ", "パリ", "ベルリン", "ロンドン"],
"answer": "ローマ"
},
{
"question": "ピカソはどの時代の画家ですか?",
"choices": ["ルネサンス", "バロック", "キュビズム", "印象派"],
"answer": "キュビズム"
},
{
"question": "最も多くの人々が話す言語は何ですか?",
"choices": ["スペイン語", "中国語", "英語", "ヒンディー語"],
"answer": "中国語"
},
{
"question": "コンピュータの基本的な単位であるバイト(Byte)は、何ビットで構成されていますか?",
"choices": ["8ビット", "16ビット", "32ビット", "64ビット"],
"answer": "8ビット"
}
];
let currentQuestionIndex = 0;
let score = 0;
function startQuiz() {
const question = questions[currentQuestionIndex];
document.querySelector(".question").textContent = question.question;
const choices = document.querySelector(".choices");
choices.innerHTML = "";
question.choices.forEach((choice) => {
const li = document.createElement("li");
li.classList.add("choice");
const input = document.createElement("input");
input.type = "radio";
input.name = "choice";
input.value = choice;
li.appendChild(input);
li.appendChild(document.createTextNode(choice));
choices.appendChild(li);
});
// 現在の設問番号と設問の総数を更新する
document.getElementById("current-question-number").textContent = currentQuestionIndex + 1;
document.getElementById("total-questions").textContent = questions.length;
}
function submitAnswer() {
const selectedChoice = document.querySelector('input[name="choice"]:checked');
if (!selectedChoice) {
alert("Please select an answer.");
return;
}
const question = questions[currentQuestionIndex];
if (selectedChoice.value === question.answer) {
score++;
}
currentQuestionIndex++;
if (currentQuestionIndex < questions.length) {
startQuiz();
} else {
showResult();
}
// 現在の設問番号を更新する
document.getElementById("current-question-number").textContent = currentQuestionIndex + 1;
}
function showResult() {
document.getElementById("quiz-container").style.display = "none";
document.getElementById("result-container").style.display = "block";
document.getElementById("result-message").textContent = `結果発表! ${score} 点中 ${questions.length} 点`;
// Remove the elements displaying current question number and total questions
const questionInfo = document.getElementById("question-info");
if (questionInfo) {
questionInfo.parentNode.removeChild(questionInfo);
}
}
function restartQuiz() {
currentQuestionIndex = 0;
score = 0;
document.getElementById("quiz-container").style.display = "block";
document.getElementById("result-container").style.display = "none";
startQuiz();
// 現在の設問番号と設問の総数をリセットする
document.getElementById("current-question-number").textContent = 1;
document.getElementById("total-questions").textContent = questions.length;
}
document.getElementById("submit-button").addEventListener("click", submitAnswer);
document.getElementById("restart-button").addEventListener("click", restartQuiz);
startQuiz();
</script>
</body>
</html>