-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.js
180 lines (136 loc) · 4.52 KB
/
quiz.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
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
const start = document.getElementById("start");
const quiz = document.getElementById("quiz");
const question = document.getElementById("question");
const qImg = document.getElementById("qImg");
const choiceA = document.getElementById("A");
const choiceB = document.getElementById("B");
const choiceC = document.getElementById("C");
const choiceD = document.getElementById("D")
const counter = document.getElementById("counter");
const timeGauge = document.getElementById("timeGauge");
const progress = document.getElementById("progress");
const scoreDiv = document.getElementById("scoreContainer");
let questions = [
{
question : "O nome Olinda foi dado a partir de uma frase dita por: ",
imgSrc : "img/1.jpg",
choiceA : 'Duarte Coelho',
choiceB : 'João de Barros',
choiceC : 'Pedro Lopes de Souza',
choiceD : 'Martin Afonso',
correct : "A"
},{
question : "Qual era o nome da aldeia localizada onde Olinda é hoje?",
imgSrc : "img/2.jpg",
choiceA : 'Guarani',
choiceB : 'Marim',
choiceC : 'Kaiowá',
choiceD : 'Wajãpi',
correct : "B"
},{
question : "Quantas bacias hidrográficas Olinda possui?",
imgSrc : "img/3.jpg",
choiceA : 1,
choiceB : 'Nenhuma',
choiceC : 2,
choiceD : 3,
correct : "C"
},{
question : "Qual o nome do país que invadiu Olinda em 1630?",
imgSrc : "img/4.jpg",
choiceA : 'Portugal',
choiceB : 'Espanha',
choiceC : 'Alemanha',
choiceD : 'Holanda',
correct : "D"
},{
question : "Qual desses títulos Olinda não possui?",
imgSrc : "img/5.jpg",
choiceA : 'Capital Brasileira da Cultura',
choiceB : 'Monumento Internacional',
choiceC : 'Patrimônio Histórico da Humanidade',
choiceD : 'Cidade Ecológica',
correct : "B"
}
];
const lastQuestion = questions.length - 1;
let runningQuestion = 0;
let count = 0;
const questionTime = 10;
const gaugeWidth = 150;
const gaugeUnit = gaugeWidth / questionTime;
let TIMER;
let score = 0;
function renderQuestion(){
let q = questions[runningQuestion];
question.innerHTML = "<p>"+ q.question +"</p>";
qImg.innerHTML = "<img src="+ q.imgSrc +">";
choiceA.innerHTML = q.choiceA;
choiceB.innerHTML = q.choiceB;
choiceC.innerHTML = q.choiceC;
choiceD.innerHTML = q.choiceD;
}
start.addEventListener("click",startQuiz);
function startQuiz(){
start.style.display = "none";
renderQuestion();
quiz.style.display = "block";
renderProgress();
renderCounter();
TIMER = setInterval(renderCounter,1000);
}
function renderProgress(){
for(let qIndex = 0; qIndex <= lastQuestion; qIndex++){
progress.innerHTML += "<div class='prog' id="+ qIndex +"></div>";
}
}
function renderCounter(){
if(count <= questionTime){
counter.innerHTML = count;
timeGauge.style.width = count * gaugeUnit + "px";
count++
}else{
count = 0;
answerIsWrong();
if(runningQuestion < lastQuestion){
runningQuestion++;
renderQuestion();
}else{
clearInterval(TIMER);
scoreRender();
}
}
}
function checkAnswer(answer){
if( answer == questions[runningQuestion].correct){
score++;
answerIsCorrect();
}else{
answerIsWrong();
}
count = 0;
if(runningQuestion < lastQuestion){
runningQuestion++;
renderQuestion();
}else{
clearInterval(TIMER);
scoreRender();
}
}
function answerIsCorrect(){
document.getElementById(runningQuestion).style.backgroundColor = "#0f0";
}
function answerIsWrong(){
document.getElementById(runningQuestion).style.backgroundColor = "#f00";
}
function scoreRender(){
scoreDiv.style.display = "block";
const scorePerCent = Math.round(100 * score/questions.length);
let img = (scorePerCent >= 80) ? "img/5.png" :
(scorePerCent >= 60) ? "img/4.png" :
(scorePerCent >= 40) ? "img/3.png" :
(scorePerCent >= 20) ? "img/2.png" :
"img/1.png";
scoreDiv.innerHTML = "<img src="+ img +">";
scoreDiv.innerHTML += "<p>"+ scorePerCent +"%</p>";
}