-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
168 lines (143 loc) · 3.84 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
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
const quizData = [
{
question: 'Which is my favorite color ?',
a: 'Red',
b: 'Green',
c: 'Blue',
d: 'Black',
correct: 'c'
},
{
question: 'What was my hobby that I loved growing up?',
a: 'Drawing',
b: 'Singing',
c: 'Writing',
d: 'Gaming',
correct: 'd'
},
{
question: 'What genre of movies is my favourite?',
a: 'action films.',
b: 'comedies',
c: 'romantic films',
d: 'adventure films',
correct: 'd'
},
{
question: 'Where do I want to travel the most?',
a: 'Maldives',
b: 'Paris, France',
c: 'Dubai, U.A.E.',
d: 'Rome, Italy',
correct: 'b'
},
{
question: 'What sport do I hate the most?',
a: 'Chess',
b: 'Football',
c: 'Badminton',
d: 'Uno',
correct: 'a'
},
{
question: 'What\'s my least favorite activity to do?',
a: 'Studying',
b: 'Playing video games',
c: 'Traveling',
d: 'Exercising',
correct: 'd'
},
{
question: 'What\'s my favorite thing in my room?',
a: 'Pillow',
b: 'Earphone',
c: 'PC',
d: 'Bed',
correct: 'b'
},
{
question: ' What is the last thing I do at night?',
a: 'Watch movies',
b: 'Chatting',
c: 'Listen songs',
d: 'Turn Off my pc',
correct: 'c'
},
{
question: ' Which is my favorite movie?',
a: 'Shiddat',
b: 'After',
c: 'One Day(2016)',
d: 'The Fault in Our Stars',
correct: 'd'
}
];
const answerEls = document.querySelectorAll('.answer');
const quiz = document.getElementById("quiz")
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() {
deselectAnswer();
const currentQuizData = quizData[currentQuiz]
questionEl.innerHTML=currentQuizData.question;
a_text.innerHTML=currentQuizData.a;
b_text.innerHTML=currentQuizData.b;
c_text.innerHTML=currentQuizData.c;
d_text.innerHTML=currentQuizData.d;
}
function getSelected() {
let answer = undefined;
answerEls.forEach(answerEl =>{
if(answerEl.checked){
answer = answerEl.id;
}
});
return answer;
}
function deselectAnswer(){
answerEls.forEach(answerEl =>{
answerEl.checked = false;
});
}
function showScore(){
quiz.innerHTML = `<h2>Your Score is ${score}/${quizData.length}</h2>`
}
submitBTN.addEventListener('click', () => {
const answer = getSelected();
console.log(answer);
if(answer){
if(answer === quizData[currentQuiz].correct ){
score++
}
currentQuiz++;
if(currentQuiz<quizData.length){
loadQuiz();
} else {
if(score<2){
quiz.innerHTML = `<h2>You dont know me. 😞</h2><button onclick="showScore()">Your score</button>`
}
else if(score<3){
quiz.innerHTML = `<h2>We have meet somewhere. 😺 </h2><button onclick="showScore()">Your score</button>`
}
else if(score<5){
quiz.innerHTML = `<h2>We might had a brief talk. 😊</h2><button onclick="showScore()">Your score</button>`
}
else if(score<=7){
quiz.innerHTML = `<h2>You are my friend . 😃</h2><button onclick="showScore()">Your score</button>`
}
else if(score===8){
quiz.innerHTML = `<h2>You are my Best Friend . 😍</h2><button onclick="showScore()">Your score</button>`
}
else{
quiz.innerHTML = `<h2>You know me better😇</h2> <button onclick="showScore()">Your score</button>`
}
}
}
});