-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimer.html
More file actions
263 lines (252 loc) · 9.08 KB
/
timer.html
File metadata and controls
263 lines (252 loc) · 9.08 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Timer • Stopwatch.net</title>
<meta
name="description"
content="Online timer with alerts, start/stop/reset and ready to go presets. This timer is perfect for every activity such as sports, cooking, playing music, taking quizzes."
/>
<meta name="title" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/index.html" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://stopwatch.net/combine/0ecd68e179acd541cc4ca78c6dbc6b69-1627375089"
rel="stylesheet"
/>
<script src="https://stopwatch.net/combine/7cbf481e9f24424467d7d792fd7f5a1b-1627118065"></script>
<script
async=""
src="https://www.googletagmanager.com/gtag/js?id=UA-145688031-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-145688031-1");
</script>
</head>
<body class="page-timer">
<!-- Header -->
<header id="layout-header">
<a href="https://stopwatch.net"
><img
src="https://stopwatch.net/themes/stopwatch/assets/images/logo_head.png"
alt="Stopwatch.NET"
/></a>
</header>
<!-- Content -->
<section id="layout-content">
<div class="container">
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="main-cont">
<div class="tab-menu">
<div class="item">
<a href="./index.html">Stopwatch</a>
</div>
<div class="item active-item">
<a href="#">Timer</a>
</div>
</div>
<div class="timer-input">
<h1 id="presets-title">Timer</h1>
<label>SET THE TIMER</label><br />
<div class="full-input">
<input type="number" id="input_hh" value="0" min="0" /><label
for=""
>HRS</label
>
</div>
<div class="full-input">
<input type="number" id="input_mm" value="0" min="0" /><label
for=""
>MIN</label
>
</div>
<div class="full-input">
<input type="number" id="input_ss" value="0" min="0" /><label
for=""
>SEC</label
>
</div>
<div class="btn-wrap">
<button id="set">Set</button>
</div>
</div>
<div class="stopw-cont timer-stopw-cont">
<div class="unit">
<h2 class="time-digit" id="hours">00</h2>
<label>HRS</label>
</div>
<div class="unit">
<h2 class="time-digit" id="minutes">00</h2>
<label>MIN</label>
</div>
<div class="unit">
<h2 class="time-digit" id="seconds">00</h2>
<label>SEC</label>
</div>
<div class="btn-wrap">
<button class="btn" id="btn-toggle" value="start">
Start
</button>
<button class="btn" id="btn-reset">Reset</button>
</div>
</div>
<div class="timer-input btn-wrap">
<label>SELECT PRESET</label><br />
<container id="presetCont">
<div class="row secondary-presets">
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="1"
>
1 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="10"
>
10 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="15"
>
15 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="20"
>
20 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="25"
>
25 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="30"
>
30 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="35"
>
35 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="40"
>
40 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="45"
>
45 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="50"
>
50 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="55"
>
55 Min
</button>
</div>
<div class="col-md-3 col-sm-4 col-6 mb-3">
<button
class="btn btn-preset presetTimerBtn"
data-timer="60"
>
60 Min
</button>
</div>
</div>
</container>
</div>
<hr />
<div class="content px-5 py-3">
<p>
An online timer with notifications, start/stop/reset and ready
to go presets. This timer is perfect for every activity such
as sports, cooking, playing music, taking quizzes. The tool is
designed with simplicity in mind for you to just select your
prefered timer and start the countdown.
</p>
<p>
We have prepared different timer presets for any occasion you
might have. The list of preset timers are:
</p>
</div>
</div>
</div>
</div>
</div>
<script>
var $presetTimer = "00";
</script>
</section>
<!-- Footer -->
<footer id="layout-footer">
<div class="container">
<div class="footer-logo">
<img
src="https://stopwatch.net/themes/stopwatch/assets/images/logo_footer.png"
alt=""
/>
</div>
<div class="footer-items">
<a href="#" target="_blank">Contact Us</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</footer>
<script src="javascript/timer-async.js"></script>
<div class="stripe-loading-indicator loaded">
<div class="stripe"></div>
<div class="stripe-loaded"></div>
</div>
</body>
</html>