-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage5.html
120 lines (106 loc) · 3.48 KB
/
page5.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Page 5</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="page5.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Xanh%20Mono">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Homemade%20Apple">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- alert banner on top of page-->
<div class="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
Choose the correct box to get your PPE! Choose wisely.
</div>
<!-- timer -->
<div id="timer"></div>
<!--paper with hunt-->
<div>
<img class= "paper" src ="paper.jpg" alt="paper with clue">
</div>
<!-- boxes -->
<div class="absolute">
<div class="container">
<div class="row">
<div class="col-sm-4">
<img src="red.png" class="bin" alt="red storage bin" onclick="buttonclick()">
</div>
<div class="col-sm-4">
<img src="blue.png" class="bin" alt="blue storage bin" onclick="buttonclick2()">
</div>
<div class="col-sm-4">
<img src="grey.png" class="bin" alt="grey storage bin" onclick="buttonclick2()">
</div>
</div>
</div>
</div>
<!--hint button -->
<div class="fixed">
<div class="box" >
<a class="button" href="#popup1">Hint</a>
</div>
</div>
<div id="popup1" class="overlay">
<div class="popup">
<h2>Hint</h2>
<a class="close" href="#">×</a>
<div class="content">
These two are the same <br>
82 69 68<br>
114 101 100 <br>
</div>
</div>
</div>
<!--background music-->
<audio autoplay loop>
<source src="backgroundmusic2.mp3">
</audio>
<!-- js for timer -->
<script type="text/javascript">
var timePassed = parseInt(sessionStorage.getItem('timePassed'));
var timerInterval = null;
document.getElementById("timer").innerHTML = `
<div class="base-timer">
<svg class="base-timer__svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<g class="base-timer__circle">
<circle class="base-timer__path-elapsed" cx="50" cy="50" r="45"></circle>
</g>
</svg>
<span id="base-timer-label" class="base-timer__label">${formatTime(
timePassed
)}</span>
</div>
`;
startTimer();
function startTimer() {
timerInterval = setInterval(() => {
timePassed += 1;
document.getElementById("base-timer-label").innerHTML = formatTime(
timePassed
);
}, 1000);
}
function formatTime(time) {
const minutes = Math.floor(time / 60);
let seconds = time % 60;
if (seconds < 10) {
seconds = `0${seconds}`;
}
return `${minutes}:${seconds}`;
}
function buttonclick() {
sessionStorage.setItem("timePassed", timePassed);
location.href = "http://webdev.scs.ryerson.ca/~j29long/project/page6-hallway.html"
}
function buttonclick2() {
sessionStorage.setItem("timePassed", timePassed);
location.href = "page5trap.html";
}
</script>
</body>
</html>