-
Notifications
You must be signed in to change notification settings - Fork 2
/
wordclock.html
55 lines (55 loc) · 2.4 KB
/
wordclock.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Wordclock Demo</title>
<meta name="description" content="Demo of the wordclock, inspired by Dougs Word Clocks http://www.dougswordclock.com/">
<meta name="author" content="Mike Quinn">
<link rel="stylesheet" type="text/css" href="wordclock.css" />
</head>
<body>
<div id="wordclock">
<div>
<div id="fanfare" class="active" style="width: 20%;">IT IS</div>
<div id="min-30" class="minute" style="width: 35%;">HALF</div>
<div id="min-10" class="minute" style="width: 35%;">TEN</div>
</div>
<div>
<div id="min-15" class="minute" style="width: 47%;">QUARTER</div>
<div id="min-20" class="minute" style="width: 47%;">TWENTY</div>
</div>
<div>
<div id="min-5" class="minute" style="width: 35%;">FIVE</div>
<div id="minute" style="width: 35%;">MINUTES</div>
<div id="to" style="width: 20%;">TO</div>
</div>
<div>
<div id="past" style="width: 30%;">PAST</div>
<div id="hour-1" class="hour" style="width: 30%;">ONE</div>
<div id="hour-3" class="hour" style="width: 30%;">THREE</div>
</div>
<div>
<div id="hour-2" class="hour" style="width: 30%;">TWO</div>
<div id="hour-4" class="hour" style="width: 30%;">FOUR</div>
<div id="hour-5" class="hour" style="width: 30%;">FIVE</div>
</div>
<div>
<div id="hour-6" class="hour" style="width: 30%;">SIX</div>
<div id="hour-7" class="hour" style="width: 30%;">SEVEN</div>
<div id="hour-8" class="hour" style="width: 30%;">EIGHT</div>
</div>
<div>
<div id="hour-9" class="hour" style="width: 30%;">NINE</div>
<div id="hour-10" class="hour" style="width: 30%;">TEN</div>
<div id="hour-11" class="hour" style="width: 30%;">ELEVEN</div>
</div>
<div>
<div id="hour-12" class="hour" style="width: 47%;">TWELVE</div>
<div id="oclock" style="width: 47%;">O'CLOCK</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script src="wordclock.js"></script>
</body>
</html>