-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathindex.html
96 lines (78 loc) · 2.93 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>Trivia!</title>
<script>
function answerHTML(correct, element) {
if (correct) {
document.getElementById(element).innerHTML = "Correct!"
}
else {
document.getElementById(element).innerHTML = "Incorrect"
}
}
function resetButtonsState() {
var buttons = document.querySelectorAll(".button");
buttons.forEach(function (button) {
button.classList.remove('incorrect');
button.classList.remove('correct');
})
}
function getAnswerButton() {
resetButtonsState()
if (event.target.id == "correct") {
event.target.classList.add('correct');
answerHTML(true, "return_part_1");
}
else {
event.target.classList.add('incorrect');
answerHTML(false, "return_part_1");
}
}
document.addEventListener("DOMContentLoaded", function (event) {
var buttons = document.querySelectorAll(".button");
buttons.forEach(function (button) {
button.addEventListener("click", getAnswerButton);
})
inputField = document.querySelector('input')
checkButton = document.querySelector("#check");
checkButton.addEventListener('click', function (evt) {
if (inputField.value.toLowerCase() == "switzerland") {
answerHTML(true, "return_part_2");
}
else {
answerHTML(false, "return_part_2");
}
});
});
</script>
</head>
<body>
<div class="jumbotron">
<h1>Trivia!</h1>
</div>
<div class="container">
<div class="section">
<h2>Part 1: Multiple Choice </h2>
<hr>
<h3>What is the approximate ratio of people to sheep in New Zealand?</h3>
<h2 id="return_part_1"></h2>
<button id="correct" class="button">6 people per 1 sheep</button>
<button class="button">3 people per 1 sheep</button>
<button class="button">1 people per 1 sheep</button>
<button class="button">1 people per 3 sheep</button>
<button class="button">1 people per 6 sheep</button>
</div>
<div class="section">
<h2>Part 2: Free Response</h2>
<hr>
<h3>In which country is it illegal to own only one guinea pig, as a lone guinea pig might get lonely?</h3>
<h2 id="return_part_2"></h2>
<input type="text">
<button id="check" class="input">Check Answer</button>
</div>
</div>
</body>
</html>