-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
107 lines (93 loc) · 2.78 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
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
const quizData = [
{
question: 'Quantos anos tem o Pedro?',
a: '10',
b: '17',
c: '23',
d: '110',
correct: 'c'
}, {
question: 'Qual a linguagem de programação mais usada atualmente?',
a: 'Java',
b: 'Python',
c: 'C++',
d: 'JavaScript',
correct: 'd'
}, {
question: 'Quem é o presidente atual dos estados unidos?',
a: 'Donald Trump',
b: 'Bill Clinton',
c: 'George Washington',
d: 'Joe Biden',
correct: 'd'
}, {
question: 'Oque significa HTML?',
a: 'Hypertext Markup Language',
b: 'Cascading Style Sheet',
c: 'Jason Object Notation',
d: 'Application Terminals Motorboats',
correct: 'a'
}, {
question: 'Em que ano javascript foi criado?',
a: '1995',
b: '1996',
c: '1997',
d: 'Nenhuma das respostas acima',
correct: 'a'
},
]
const quiz = document.getElementById('quiz')
const answersEls = document.querySelectorAll('.answer')
const questionEl = document.getElementById('question')
const a_text = document.getElementById('a_text')
const b_text = document.getElementById('b_text')
const c_text = document.getElementById('c_text')
const d_text = document.getElementById('d_text')
const submitBtn = document.getElementById('submit')
let currentQuiz = 0
let score = 0
loadQuiz()
function loadQuiz() {
deselectAnswers()
const currentQuizData = quizData[currentQuiz]
questionEl.innerText = currentQuizData.question
a_text.innerText = currentQuizData.a
b_text.innerText = currentQuizData.b
c_text.innerText = currentQuizData.c
d_text.innerText = currentQuizData.d
}
function getSelected() {
let answer = undefined
let snackbar = document.getElementById("snackbar");
answersEls.forEach((answerEl) => {
if(answerEl.checked) {
answer = answerEl.id
}
})
if (answer === undefined) {
// snackbar
snackbar.className = "show";
setTimeout(function(){ snackbar.className = snackbar.className.replace("show", ""); }, 3000);
}
return answer
}
function deselectAnswers() {
answersEls.forEach((answerEl) => {
answerEl.checked = false
})
}
submitBtn.addEventListener('click', () => {
// check if answer is correct and if the quiz is over
const answer = getSelected()
if(answer) {
if(answer === quizData[currentQuiz].correct) {
score++
}
currentQuiz++
if(currentQuiz < quizData.length) {
loadQuiz()
} else {
quiz.innerHTML = `<h2>Você acertou ${score} de ${quizData.length} das perguntas.</h2> <button onclick="location.reload()">Tentar novamente</button>`
}
}
})