-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·43 lines (34 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Create an Animated Flip Down Clock</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="wrapper">
<div id="back">
<div id="upperHalfBack">
<img src="spacer.png" /><img id="hoursUpBack" src="Single/Up/AM/0.png"/><img id="minutesUpLeftBack" src="Double/Up/Left/0.png" class="asd" /><img id="minutesUpRightBack" src="Double/Up/Right/0.png"/><img id="secondsUpLeftBack" src="Double/Up/Left/0.png" /><img id="secondsUpRightBack" src="Double/Up/Right/0.png"/>
</div>
<div id="lowerHalfBack">
<img src="spacer.png" /><img id="hoursDownBack" src="Single/Down/AM/0.png" /><img id="minutesDownLeftBack" src="Double/Down/Left/0.png" /><img id="minutesDownRightBack" src="Double/Down/Right/0.png" /><img id="secondsDownLeftBack" src="Double/Down/Left/0.png" /><img id="secondsDownRightBack" src="Double/Down/Right/0.png" />
</div>
</div>
<div id="front">
<div id="upperHalf">
<img src="spacer.png" /><img id="hoursUp" src="Single/Up/AM/0.png"/><img id="minutesUpLeft" src="Double/Up/Left/0.png" /><img id="minutesUpRight" src="Double/Up/Right/0.png"/><img id="secondsUpLeft" src="Double/Up/Left/0.png" /><img id="secondsUpRight" src="Double/Up/Right/0.png"/>
</div>
<div id="lowerHalf">
<img src="spacer.png" /><img id="hoursDown" src="Single/Down/AM/0.png"/><img id="minutesDownLeft" src="Double/Down/Left/0.png" /><img id="minutesDownRight" src="Double/Down/Right/0.png" /><img id="secondsDownLeft" src="Double/Down/Left/0.png" /><img id="secondsDownRight" src="Double/Down/Right/0.png" />
</div>
</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.js"></script>
<script src="animate-jquery.js" type="text/javascript"></script>
</body>
<!--
originally found here: http://net.tutsplus.com/tutorials/html-css-techniques/learn-how-to-create-a-retro-animated-flip-down-clock/
simple jQuery Port made by team Odeon. http://od-eon.com
-->
</html>