-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschool.html
88 lines (88 loc) · 3.32 KB
/
school.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
<!DOCTYPE html>
<html>
<head>
<title>School Progress Bar</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<h1>School Time Tracker</h1>
<div class="center">
<b>Given that you graduate in <select id="grad-sel">
<option value="2023">2023</option>
<option value="2024">2024</option>
<option value="2025">2025</option>
<option value="2026" selected>2026</option>
</select> you are </b><b id="graduation"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="grad-bar"></rect>
</g>
</svg>
<div class="center">
<b id="year-text"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="year-bar"></rect>
</g>
</svg>
<div class="center">
<b id="quarter-text"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="quar-bar"></rect>
</g>
</svg>
<div class="center">
<b id="progress"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="overall-bar"></rect>
</g>
</svg>
<div id="specific-div" style="display: none;">
<div class="center">
<b id="specific"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="specific-bar"></rect>
</g>
</svg>
</div>
<div id="lunch-div" style="display: none;">
<div class="center">
<b id="lunch"></b>
</div>
<svg class="progress">
<g color="gray">
<rect height="100%" width="100%" fill="currentcolor"></rect>
</g>
<g color="lightgreen">
<rect x="0.1%" y="2%" height="96%" width="99.8%" fill="currentcolor" id="lunch-bar"></rect>
</g>
</svg>
</div><br>
<i>I will add some sort of summer progress bar later but just ignore if it goes above 100% :)</i>
<script src="school.js"></script>
</body>
</html>