-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.js
83 lines (62 loc) · 1.32 KB
/
project.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
var sum = 0;
function func(x){
if(x == "correct"){
sum +=1;
}
else{
}
}
$(document).ready(function() {
$("#links").hide();
$("#menu-btn").click(changeNav);
function changeNav() {
$("#links").toggle(200);
$("#menu-btn").toggleClass("turn");
}
});
setTimeout(
function()
{
$("#o2").show();
},
3000
)
setTimeout(
function()
{
$("#o3").show();
},
5000
)
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function() {
$("#score").html(sum);
if (sum >= 5){
$("#remark").html("Outstanding");
} else if (sum >= 3){
$("#remark").html("Well done");
}
else if (sum >= 1){
$("#remark").html("Good effort");
}
else if (sum == 0){
$("#remark").html("Try Again?");
}
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}