-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 902 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Clock</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="js/raphael-min.js"></script>
<script src="js/clock.js"></script>
<link rel="stylesheet" href="css/clock.css">
<script>
$(document).ready(function() {
$('#clock_0').clock({});
$('#clock_1').clock({offset : -4});
$('#clock_2').clock({offset : -6});
});
</script>
</head>
<body>
<div id="clock_0">
<div class="holder"></div>
</div>
<div id="clock_1">
<div class="holder"></div>
</div>
<div id="clock_2">
<div class="holder"></div>
</div>
</body>
</html>