-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneg.js
236 lines (177 loc) · 5.84 KB
/
neg.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
let counter = 0;
let scoreBox = true;
let errorMessage = "OoOoOoOooops";
let keyOne = 'NOLAN ARENADO';
let keyTwo = 'RANDAL GRICHUK';
let keyThree = 'DEXTER FOWLER';
let avOne = './images/hintone.png';
let avTwo = './images/hinttwo.png';
let avThree = './images/hintthree.png';
/* animating.css jquery for buttons */
$(document).ready(function(){
$("button").hover(function(){
$(this).addClass("animate__animated animate__pulse");
})
});
$(document).ready(function(){
$(".avatar-one").hover(function(){
$(this).addClass("animate__animated animate__tada");
})
});
$(document).ready(function(){
$(".avatar-two").hover(function(){
$(this).addClass("animate__animated animate__tada");
})
});
$(document).ready(function(){
$(".avatar-three").hover(function(){
$(this).addClass("animate__animated animate__tada");
})
});
/* Jquery for enlarging avatar when clicked */
$(document).ready(function(){
$(".avatar-one-img").click(function(){
$(this).css("transform", "scale(1.5)")
})
})
$(document).ready(function(){
$(".avatar-two-img").click(function(){
$(this).css("transform", "scale(1.5)")
})
})
$(document).ready(function(){
$(".avatar-three-img").click(function(){
$(this).css("transform", "scale(1.5)")
})
})
/* Function to change src of hint boxes */
/*let hintOne = document.getElementById('avatar-one-id');*/
function hintOne(){
document.getElementById('avatar-one-id').src = avOne;
}
function hintTwo(){
document.getElementById('avatar-two-id').src = avTwo;
}
function hintThree(){
document.getElementById('avatar-three-id').src = avThree;
}
/* Function to check if scoreBox should be displayed and then generating the counter */
function createCounter(){
let counterMessage = `Score: ${counter}`;
if (scoreBox = true){
document.getElementById('score-box').innerHTML= counterMessage;
} else {
document.getElementById('score-box').innerHTML= errorMessage;
};
};
/* If failed answer this reveals the palyers name*/
function failedAnswerOne() {
document.getElementById('failed-answer-one').innerHTML= `${keyOne}`;
};
function failedAnswerTwo() {
document.getElementById('failed-answer-two').innerHTML= `${keyTwo}`;
};
function failedAnswerThree() {
document.getElementById('failed-answer-three').innerHTML= `${keyThree}`;
};
/* Checks answer and adds to counter move to next quizbox */
/* First quiz box */
/* log to console to check if input is working on button */
function inputCheck(){
const input = document.getElementById('textbox').value.toUpperCase();
return input == keyOne.replace(/[^a-zA-Z0-9 ]/g, '') ? console.log('True') : console.log("False");
};
function answer(){
const ansInput = document.getElementById('textbox').value.toUpperCase();
if (ansInput.replace(/[^a-zA-Z0-9 ]/g, '') !== keyOne) {
document.getElementById('image').style.border= '4px solid red';
failedAnswerOne();
} else {
counter = counter + 1;
document.getElementById('image').style.border= '4px solid green';
}
console.log(counter)
createCounter();
};
function nextBox() {
let status = true;
status === true ? document.getElementById('quizbox-two').style.display= 'block' : null;
}
/* hint */
function move() {
return window.location = "";
};
/* Enter button to submit answer */
const input = document.getElementById('textbox');
input.addEventListener('keyup', (e) => {
if (e.keyCode === 13) {
console.log("enter")
inputCheck();
answer();
nextBox();
}
});
/* Second quiz box */
function inputCheckTwo(){
const inputTwo = document.getElementById('textbox-two').value.toUpperCase();
return inputTwo.replace(/[^a-zA-Z0-9 ]/g, '') == keyTwo ? console.log('True') : console.log("False");
};
function answerTwo(){
const ansInputTwo = document.getElementById('textbox-two').value.toUpperCase();
if (ansInputTwo.replace(/[^a-zA-Z0-9 ]/g, '') !== keyTwo) {
document.getElementById('image-two').style.border= '4px solid red';
failedAnswerTwo();
} else {
counter = counter + 1;
document.getElementById('image-two').style.border= '4px solid green';
}
console.log(counter)
createCounter();
};
function thirdBox() {
document.getElementById('quizbox-three').style.display= 'block';
}
function moveTwo() {
return window.location = "";
};
/* Enter button to submit answer */
const inputTwo = document.getElementById('textbox-two');
inputTwo.addEventListener('keyup', (e) => {
if (e.keyCode === 13) {
console.log("enter x 2")
inputCheckTwo();
answerTwo();
thirdBox();
}
});
/* Third quiz box */
function inputCheckThree(){
const inputThree = document.getElementById('textbox-three').value.toUpperCase();
return inputThree.replace(/[^a-zA-Z0-9 ]/g, '') == keyThree ? console.log('True') : console.log("False");
};
/* generates counter after checking third score */
/*function charge(){
let audio = "./images/charge.mp3"
counter === 3 ? audio.play() : audio.play();
}*/
function answerThree(){
const ansInputThree = document.getElementById('textbox-three').value.toUpperCase();
if (ansInputThree.replace(/[^a-zA-Z0-9 ]/g, '') !== keyThree) {
document.getElementById('image-three').style.border= "4px solid red";
failedAnswerThree();
} else {
counter = counter + 1;
document.getElementById('score-box').style.display= "block";
document.getElementById('image-three').style.border= '4px solid green';
}
console.log(counter);
createCounter();
};
const inputThree = document.getElementById('textbox-three');
inputThree.addEventListener('keyup', (e) => {
if (e.keyCode === 13) {
console.log("enter x 2")
inputCheckThree();
answerThree();
}
});