forked from pmclanahan/stopwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (63 loc) · 1.56 KB
/
index.html
File metadata and controls
65 lines (63 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Stopwatch Widget</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/jq.stopwatch.css">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="./js/jq.stopwatch.js"></script>
<style type="text/css">
body {
background:#fff;
color:#222;
font-family:helvetica, arial, sans-serif;
padding:40px;
}
</style>
</head>
<body>
<h3>Theme 1</h3>
<div id="stopwatch-1"></div>
<br>
<h3>Theme 2</h3>
<div id="stopwatch-2"></div>
<br>
<h3>Theme 3</h3>
<div id="stopwatch-3"></div>
<br>
<h3>Theme 4</h3>
<div id="stopwatch-4"></div>
<br>
<h3>Theme 5</h3>
<div id="stopwatch-5"></div>
<br>
<h3>Theme 6</h3>
<div id="stopwatch-6"></div>
<br>
<h3>Theme 7</h3>
<div id="stopwatch-7"></div>
<br>
<h3>Theme 8</h3>
<div id="stopwatch-8"></div>
<br>
<h3>Theme 9</h3>
<div id="stopwatch-9"></div>
<br>
<h3>Theme 10</h3>
<div id="stopwatch-10"></div>
<script type="text/javascript">
$(function() {
$('#stopwatch-1').stopwatch('theme-1');
$('#stopwatch-2').stopwatch('theme-2');
$('#stopwatch-3').stopwatch('theme-3');
$('#stopwatch-4').stopwatch('theme-4');
$('#stopwatch-5').stopwatch('theme-5');
$('#stopwatch-6').stopwatch('theme-6');
$('#stopwatch-7').stopwatch('theme-7');
$('#stopwatch-8').stopwatch('theme-8');
$('#stopwatch-9').stopwatch('theme-9');
$('#stopwatch-10').stopwatch('theme-10');
});
</script>
</body>
</html>