-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
188 lines (155 loc) · 4.71 KB
/
Copy pathscript.js
File metadata and controls
188 lines (155 loc) · 4.71 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
// select all elements
let start = document.querySelector("#start");
let quiz = document.querySelector("#quiz");
let display = document.querySelector('#time');
let question = document.querySelector("#question");
let choiceA = document.querySelector("#A");
let choiceB = document.querySelector("#B");
let choiceC = document.querySelector("#C");
let scoreDiv = document.querySelector("#scoreContainer");
let leaderList = document.querySelector("#leaderboards");
let restart = document.querySelector("#restart");
let leaderboard = [];
let beginning;
// create our questions
let questions = [
{
question : "How many legs does the Legs of Man have?",
choiceA : "1",
choiceB : "2",
choiceC : "3",
correct : "C"
},{
question : "How many bones does an adult human have?",
choiceA : "Two hundred",
choiceB : "Two hundred and six",
choiceC : "Too many",
correct : "B"
},{
question : "What was Marilyn Monroe's natural hair colour?",
choiceA : "Blonde",
choiceB : "Brunette",
choiceC : "Ginger",
correct : "C"
},{
question : "What did A.E. Frick invent in 1887, which are now worn by thousands if not millions of people?",
choiceA : "Contact Lenses",
choiceB : "The T-shirt",
choiceC : "Cotton socks",
correct : "A"
},{
question : "What is an irrational fear of trees called?",
choiceA : "Arborophobia",
choiceB : "Dendrophobia",
choiceC : "Treephobia",
correct : "B"
},{
question : "What is the national flower of Wales?",
choiceA : "Daffodil",
choiceB : "Rose",
choiceC : "Marijuana",
correct : "A"
},{
question : "How many bones are there on a Skull & Crossbones flag?",
choiceA : "1",
choiceB : "2",
choiceC : "3",
correct : "C"
},{
question : "Which ocean surrounds the Maldives?",
choiceA : "Indian",
choiceB : "Pacific",
choiceC : "Atlantic",
correct : "A"
}
];
// create some variables
const lastQuestion = questions.length - 1;
let runningQuestion = 0;
let count = 0;
let TIMER;
let score = 0;
var timer;
// render a question
function renderQuestion(){
let q = questions[runningQuestion];
question.innerHTML = "<p>"+ q.question +"</p>";
choiceA.innerHTML = q.choiceA;
choiceB.innerHTML = q.choiceB;
choiceC.innerHTML = q.choiceC;
}
start.addEventListener("click",startQuiz);
// start quiz
function startQuiz(){
start.style.display = "none";
runningQuestion = 0;
count = 0;
score = 0;
renderQuestion();
quiz.style.display = "block";
startTimer(30, display);
}
// timer render
function startTimer(duration, display) {
timer = duration;
var minutes;
var seconds;
beginning = setInterval(function () {
minutes = parseInt(timer / 60, 10);
seconds = parseInt(timer % 60, 10);
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;
display.textContent = minutes + ":" + seconds;
if (--timer < 0) {
clearInterval(beginning);
timer = duration;
}
}, 1000);
}
// checkAnwer
function checkAnswer(answer){
if( answer == questions[runningQuestion].correct){
// answer is correct
score++;
}else{
// answer is wrong
timer -= 3;
}
count = 0;
runningQuestion++;
if(runningQuestion < lastQuestion){
renderQuestion();
}else{
// end the quiz and show the score
clearInterval(TIMER);
scoreRender();
}
}
// score render
function scoreRender(){
scoreDiv.style.display = "block";
quiz.style.display = "none";
clearInterval(beginning);
const scorePerCent = Math.round(100 * score/questions.length);
var userName = prompt("Enter your name for the leaderboard.");
leaderboard = JSON.parse(localStorage.getItem("leaderboard"));
if (!leaderboard){
leaderboard = [];
}
leaderboard.push({name: userName, score: scorePerCent});
leaderboard.sort(function(a, b) {
return b.score - a.score;
});
for (var i = 0;i < leaderboard.length; i++){
var player = leaderboard[i].name + ": " + leaderboard[i].score +"%";
var li = document.createElement("li");
li.textContent = player;
leaderList.appendChild(li);
}
restart.addEventListener("click", function(){
scoreDiv.style.display = "none";
startQuiz();
quiz.style.display = "block";
})
localStorage.setItem("leaderboard", JSON.stringify(leaderboard));
}