-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
210 lines (198 loc) · 6.92 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Timer</title>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link rel="stylesheet" href="css.css" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta
content="width=device-width, initial-scale=1, maximum-scale=1.0"
name="viewport"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="subject" content="Timer" />
<meta
name="description"
content="Simple timer with test administration and functionality in mind. Supports history, end time/remaining minutes modes, pausing, and more."
/>
<meta name="copyright" content="Noah Overcash" />
<meta name="language" content="EN" />
<meta name="robots" content="index,follow" />
<meta name="author" content="Noah Overcash, [email protected]" />
<meta name="designer" content="Noah Overcash" />
<meta name="reply-to" content="[email protected]" />
<meta property="og:title" content="Timer" />
<meta
name="og:description"
content="Simple timer with test administration and functionality in mind. Supports history, end time/remaining minutes modes, pausing, and more."
/>
</head>
<body>
<div class="container">
<div id="start-page">
<h4>Minutes:</h4>
<form class="row" action="#" id="custom-minutes-form">
<!-- form for lazy validation -->
<div class="input-field col s12">
<input
type="number"
min="0"
step="1"
id="num-minutes"
required="required"
/>
<label for="num-minutes"></label>
</div>
<button type="submit" href="#" class="btn" id="start-btn">
START
</button>
</form>
<p class="flow-text">
<span style="font-weight: bold">Common times:</span>
<a class="chip white black-text" href="javascript:startTimer(5)"
>5m</a
>
<a class="chip white black-text" href="javascript:startTimer(10)"
>10m</a
>
<a class="chip white black-text" href="javascript:startTimer(15)"
>15m</a
>
<a class="chip white black-text" href="javascript:startTimer(30)"
>30m</a
>
<a class="chip white black-text" href="javascript:startTimer(45)"
>45m</a
>
<a class="chip white black-text" href="javascript:startTimer(60)"
>1h</a
>
<a class="chip white black-text" href="javascript:startTimer(75)"
>1h 15m</a
>
<a class="chip white black-text" href="javascript:startTimer(80)"
>1h 20m</a
>
<a class="chip white black-text" href="javascript:startTimer(90)"
>1h 30m</a
>
<a class="chip white black-text" href="javascript:startTimer(105)"
>1h 45m</a
>
</p>
<p class="flow-text">
<span style="font-weight: bold">SAT:</span>
<a class="chip white black-text" href="javascript:startTimer(65)"
>Reading (65m)</a
>
<a class="chip white black-text" href="javascript:startTimer(10)"
>Break 1 (10m)</a
>
<a class="chip white black-text" href="javascript:startTimer(35)"
>Writing (35m)</a
>
<a class="chip white black-text" href="javascript:startTimer(25)"
>Math Non-Calculator (25m)</a
>
<a class="chip white black-text" href="javascript:startTimer(5)"
>Break 2 (5m)</a
>
<a class="chip white black-text" href="javascript:startTimer(55)"
>Math Calculator (55m)</a
>
<a class="chip white black-text" href="javascript:startTimer(5)"
>Break 3 (5m)</a
>
<a class="chip white black-text" href="javascript:startTimer(50)"
>Essay (50m)</a
>
</p>
<p class="flow-text">
<span style="font-weight: bold">ACT:</span>
<a class="chip white black-text" href="javascript:startTimer(45)"
>English (45m)</a
>
<a class="chip white black-text" href="javascript:startTimer(60)"
>Mathematics (60m)</a
>
<a class="chip white black-text" href="javascript:startTimer(10)"
>Break 1 (10m)</a
>
<a class="chip white black-text" href="javascript:startTimer(35)"
>Reading (35m)</a
>
<a class="chip white black-text" href="javascript:startTimer(35)"
>Science (35m)</a
>
<a class="chip white black-text" href="javascript:startTimer(5)"
>Break 2 (5m)</a
>
<a class="chip white black-text" href="javascript:startTimer(40)"
>Writing (40m)</a
>
</p>
<p class="flow-text" id="recent-chip-container">
<span style="font-weight: bold">Recent:</span>
</p>
<p class="no-bottom-margin">
<i
>Contribute and view the code on
<a href="https://github.com/ncovercash/timer/">GitHub</a></i
>
</p>
<p class="no-margin">
<i
>Questions? Suggestions? Comments? Drop me an e-mail at
<a href="mailto:[email protected]">[email protected]</a> and I'll do
my best to answer!</i
>
</p>
<div id="clock-mode-button-wrapper">
<button type="button" id="clock-mode-button">clock mode</button>
</div>
</div>
</div>
<div id="timer-page" class="center hide">
<span
style="font-size: 0.15em"
class="no-bottom-margin"
id="current-time-label"
>Current Time</span
>
<span style="font-size: 0.35em" class="no-top-margin" id="current-time"
>--:--</span
>
<span
style="font-size: 0.15em"
class="no-bottom-margin"
id="bottom-area-label"
>End Time</span
>
<span
style="font-size: 0.35em"
class="no-top-margin"
id="bottom-area-value"
>--:--</span
>
</div>
<div id="toolbox" class="hide">
<i class="material-icons medium" id="play-pause-icon">pause</i>
<i class="material-icons medium" id="show-time-icon">access_time</i>
<i class="material-icons medium" id="exit-icon">clear</i>
<i class="material-icons medium" id="clock-exit-icon">clear</i>
</div>
</body>
</html>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"
></script>
<script type="text/javascript" src="main.js"></script>