-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandre.html
More file actions
483 lines (398 loc) · 13.6 KB
/
Copy pathandre.html
File metadata and controls
483 lines (398 loc) · 13.6 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Online</title>
<style>
body{
background:#800080;
font-family:Arial;
color:white;
}
main{
width:90%;
margin:auto;
padding:20px;
}
.questoes{
background:#7a378b;
padding:20px;
border-radius:10px;
}
ol li{
margin:10px 0;
padding:10px;
background:#ffffff22;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}
ol li:hover{
background:#6495ED;
}
#instrucoes{
background:gold;
color:purple;
padding:10px;
border-radius:10px;
margin-bottom:20px;
text-align:center;
}
</style>
</head>
<body>
<main>
<h1>Quiz Online</h1>
<div id="instrucoes">
Leia as perguntas e ganhe pontos.
</div>
<div class="questoes">
<h2>
<span id="numQuestao"></span>
-
<span id="pergunta"></span>
</h2>
<ol type="A">
<li id="a"></li>
<li id="b"></li>
<li id="c"></li>
<li id="d"></li>
<li id="e"></li>
<li id="f"></li>
</ol>
</div>
<p>
Questão <span id="numero"></span>
de <span id="total"></span>
</p>
</main>
<script>
const questoes = [
{
numQuestao:1,
pergunta:"Quem venceu a Copa do Mundo 1982?",
alternativas:[
"Alemanha",
"Brasil",
"Espanha",
"Itália",
"Argentina",
"Uruguai"
],
correta:"Itália"
},
{
numQuestao:2,
pergunta:"Quem venceu a UEFA Champions League 2002/03?",
alternativas:[
"FC Porto",
"Juventus",
"Real Madrid",
"Bayern Munich",
"SL Benfica",
"AC Milan"
],
correta:"AC Milan"
},
{
numQuestao:3,
pergunta:"Quantos títulos da Liga Francesa tem o Marselha?",
alternativas:[
"10",
"9",
"8",
"7",
"14",
"19"
],
correta:"9"
},
{
numQuestao:4,
pergunta:"Quem foi o melhor jogador da Liga Portuguesa na temporada 2012/13?",
alternativas:[
"Pablo Aimar",
"Jackson Martinez",
"Enzo Perez",
"Radamel Falcao",
"Bas Dost",
"Nemanja Matic"
],
correta:"Nemanja Matic"
},
{
numQuestao:5,
pergunta:"Quem foi o melhor jogador da Copa América 2011?",
alternativas:[
"Luis Suarez",
"Robinho",
"Sebastian Coates",
"Lionel Messi",
"Paolo Guerrero",
"Fred"
],
correta:"Luis Suarez"
},
{
numQuestao:6,
pergunta:"De que clube germânico é o Max-Morlok-Stadion?",
alternativas:[
"Hoffenheim",
"Schalke 04",
"Nuremberga",
"Hansa Rostock",
"Hertha Berlim",
"Hannover 96"
],
correta:"Nuremberga"
},
{
numQuestao:7,
pergunta:"Quem usou o dorsal 10 da Espanha na Copa do Mundo 2022?",
alternativas:[
"Marco Asensio",
"Dani Olmo",
"Isco",
"Thiago Alcântara",
"Pablo Sarabia",
"Ansu Fati"
],
correta:"Marco Asensio"
},
{
numQuestao:8,
pergunta:"Em que ano o Chile sediou a Copa do Mundo?",
alternativas:[
"1970",
"1974",
"1978",
"1982",
"1962",
"1958"
],
correta:"1962"
},
{
numQuestao:9,
pergunta:"Quem foi o artilheiro da Série A Itália 2003/04?",
alternativas:[
"Antonio Di Natale",
"Christian Vieri",
"Zlatan Ibrahimovic",
"Andriy Shevchenko",
"Francesco Totti",
"Luca Toni"
],
correta:"Andriy Shevchenko"
},
{
numQuestao:10,
pergunta:"Em que clube Blaise Matuidi jogou antes do PSG?",
alternativas:[
"Lorient",
"Saint Etienne",
"Troyes",
"Amiens",
"Marseille",
"Montpellier"
],
correta:"Saint Etienne"
},
{
numQuestao:11,
pergunta:"Quem é o treinador com mais conquistas da história da UEFA Europa League?",
alternativas:[
"Unai Emery",
"Juande Ramos",
"Quique Sánchez Flores",
"José Mourinho",
"Oliver Glasner",
"Ottmar Hitzfeld"
],
correta:"Unai Emery"
},
{
numQuestao:12,
pergunta:"Que seleção foi derrotada pela Inglaterra nos quartos de final da Euro 2024?",
alternativas:[
"Romênia",
"Áustria",
"Bélgica",
"Itália",
"Suíça",
"Turquia"
],
correta:"Suíça"
},
{
numQuestao:13,
pergunta:"Quem foi o melhor jogador do AFCON 2019?",
alternativas:[
"Riyad Mahrez",
"Sadio Mané",
"Mohamed Salah",
"Idrissa Gueye",
"Ismael Bennacer",
"Odion Ighalo"
],
correta:"Ismael Bennacer"
},
{
numQuestao:14,
pergunta:"Quem foi o melhor jogador jovem da Copa do Mundo 2014?",
alternativas:[
"Mario Gotze",
"Neymar Jr",
"Toni Kroos",
"Memphis Depay",
"James Rodríguez",
"Paul Pogba"
],
correta:"Paul Pogba"
},
{
numQuestao:15,
pergunta:"Qual foi o agregado da eliminatória PSG x Manchester United nos oitavos da UEFA Champions League 2018/19?",
alternativas:[
"3-2",
"2-3",
"4-6",
"3-3",
"4-5",
"5-3"
],
correta:"3-3"
},
{
numQuestao:16,
pergunta:"Quem foi o melhor jogador da Série A 2020/21?",
alternativas:[
"Lautaro Martinez",
"Nicolo Barela",
"Marcelo Brozovic",
"Romelu Lukaku",
"Rafael Leão",
"Cristiano Ronaldo"
],
correta:"Romelu Lukaku"
},
{
numQuestao:17,
pergunta:"Em que ano a seleção de Angola participou na sua primeira edição da Copa Africana das Nações?",
alternativas:[
"1973",
"1984",
"1990",
"1992",
"1994",
"1996"
],
correta:"1996"
},
{
numQuestao:18,
pergunta:"Quem foi o lider em Assistências do Mundial de Clubes 2025?",
alternativas:[
"Enzo Fernandez",
"Lamine Yamal",
"Vitinha",
"Vinícius jr",
"Trent-Alexander Arnold",
"Jhon Arias"
],
correta:"Enzo Fernandez"
},
{
numQuestao:19,
pergunta:"Que Seleção venceu a Copa das Confederações 2013",
alternativas:[
"Espanha",
"México",
"Alemanha",
"Brasil",
"Argentina",
"Chile"
],
correta:"Brasil"
},
{
numQuestao:20,
pergunta:"Quantos títulos da CAF Champions league tem o Al Ahly do Egipto?",
alternativas:[
"4",
"5",
"6",
"7",
"8",
"11"
],
correta:"7"
}
];
let perguntaAtual = 0;
let pontos = 0;
const numQuestao = document.querySelector("#numQuestao");
const pergunta = document.querySelector("#pergunta");
const a = document.querySelector("#a");
const b = document.querySelector("#b");
const c = document.querySelector("#c");
const d = document.querySelector("#d");
const e = document.querySelector("#e");
const f = document.querySelector("#f");
const numero = document.querySelector("#numero");
const total = document.querySelector("#total");
total.textContent = questoes.length;
function carregarQuestao(){
let q = questoes[perguntaAtual];
numero.textContent = perguntaAtual + 1;
numQuestao.textContent = q.numQuestao;
pergunta.textContent = q.pergunta;
a.textContent = q.alternativas[0];
b.textContent = q.alternativas[1];
c.textContent = q.alternativas[2];
d.textContent = q.alternativas[3];
e.textContent = q.alternativas[4];
f.textContent = q.alternativas[5];
}
function verificarResposta(respostaElemento){
let q = questoes[perguntaAtual];
let resposta = respostaElemento.textContent;
const alternativas = [a,b,c,d,e,f];
alternativas.forEach(item => {
item.style.pointerEvents = "none";
if(item.textContent === q.correta){
item.style.background = "green";
}
});
if(resposta !== q.correta){
respostaElemento.style.background = "red";
}else{
pontos += 10;
}
setTimeout(() => {
alternativas.forEach(item => {
item.style.background = "#ffffff22";
item.style.pointerEvents = "auto";
});
perguntaAtual++;
if(perguntaAtual < questoes.length){
carregarQuestao();
}else{
document.querySelector(".questoes").innerHTML = `
<h2>Fim do Quiz</h2>
<p>Pontuação: ${pontos}</p>
`;
}
},1500);
}
a.onclick = () => verificarResposta(a);
b.onclick = () => verificarResposta(b);
c.onclick = () => verificarResposta(c);
d.onclick = () => verificarResposta(d);
e.onclick = () => verificarResposta(e);
f.onclick = () => verificarResposta(f);
carregarQuestao();
</script>
</body>
</html>