-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
60 lines (48 loc) · 2.92 KB
/
script.js
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
function mouseSobreBotao(botao) {
botao.style.background = '#005c99';
}
function mouseForaBotao(botao) {
botao.style.background = '#007acc';
}
function iniciarQuiz() {
var quiz = document.getElementById("quiz");
quiz.style = "display: block";
botaoIniciar = document.getElementById("botaoIniciar");
botaoIniciar.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="currentColor" style="vertical-align: middle"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /></svg><strong style="vertical-align: middle"> Quiz iniciado</strong>';
}
function verificarRespostas() {
var verifica = [];
var respostasCertas = 0;
var infoCorrecao = document.getElementsByClassName("infoCorrecao");
var nomeClassePerguntas = [];
var nomeClasseCorrecao = [];
var perguntas = document.getElementsByClassName("perguntas");
for (p = 0; p < perguntas.length; p++) {
n = String(p + 1);
nomeClassePerguntas[p] = "pergunta" + n;
nomeClasseCorrecao[p] = "correcao" + n;
}
for (p = 0; p < perguntas.length; p++) {
verifica[p] = document.getElementsByClassName(nomeClassePerguntas[p]);
for (i = 0; i < 2; i++) {
if ((verifica[p].item(i).checked == true) && (verifica[p].item(i).value == "correto")) {
document.getElementById(nomeClasseCorrecao[p]).innerHTML = "<p style='color:green'><strong>Resposta certa!</strong></p>";
respostasCertas = respostasCertas + 1;
}
if ((verifica[p].item(i).checked == true) && (verifica[p].item(i).value == "errado")) {
document.getElementById(nomeClasseCorrecao[p]).innerHTML = "<p style='color:red'><strong>Resposta errada.</strong></p>";
}
}
}
for (p = 0; p < infoCorrecao.length; p++) {
infoCorrecao[p].style.display = "inline-block";
}
document.getElementById("numeroCertas").innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="#007acc" style="vertical-align: middle"><path d="M2 11a1 1 0 011-1h2a1 1 0 011 1v5a1 1 0 01-1 1H3a1 1 0 01-1-1v-5zM8 7a1 1 0 011-1h2a1 1 0 011 1v9a1 1 0 01-1 1H9a1 1 0 01-1-1V7zM14 4a1 1 0 011-1h2a1 1 0 011 1v12a1 1 0 01-1 1h-2a1 1 0 01-1-1V4z" /></svg><h3 id="parabens"></h3><p> Você acertou ' + respostasCertas + ' das '+ perguntas.length +' questões.</p>';
if (respostasCertas == perguntas.length) {
document.getElementById("parabens").innerHTML = 'Parabéns!'
}
if (respostasCertas < perguntas.length && respostasCertas >= 8) {
document.getElementById("parabens").innerHTML = 'Por pouco!'
}
document.getElementById("botaoVerificaRespostas").style.display = 'none';
}