diff options
author | JinweiClarkChao <[email protected]> | 2014-09-23 22:34:14 +0800 |
---|---|---|
committer | Jinwei Zhao <[email protected]> | 2017-01-13 15:07:44 +0800 |
commit | b214f38d2c24a890ce36512a0c8bab965e27a508 (patch) | |
tree | 1522b651444407cbf120798e79be4657f1b472ab /Code/Blocks/time/index.html | |
parent | e13882d1656b143533cec307a19425e0a56ec999 (diff) | |
download | jinwei.me-b214f38d2c24a890ce36512a0c8bab965e27a508.tar.gz |
README
Diffstat (limited to 'Code/Blocks/time/index.html')
-rw-r--r-- | Code/Blocks/time/index.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Code/Blocks/time/index.html b/Code/Blocks/time/index.html new file mode 100644 index 0000000..c363595 --- /dev/null +++ b/Code/Blocks/time/index.html | |||
@@ -0,0 +1,55 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <script src="jquery.min.js"></script> | ||
5 | |||
6 | <meta charset="UTF-8" /> | ||
7 | <title> Lexical Clock</title> | ||
8 | <link type="text/css" rel="stylesheet" href="style.css" /> | ||
9 | <script type="text/javascript" src="jquery-1.8.3.min.js"></script> | ||
10 | <script type="text/javascript" src="script.js"></script> | ||
11 | </head> | ||
12 | |||
13 | <body> | ||
14 | <div id="main"> | ||
15 | <div class="row"> | ||
16 | <div id="its">It is</div> <div id="half"> half</div> <div id="tenMod">ten</div> | ||
17 | </div> | ||
18 | |||
19 | <div class="row"> | ||
20 | <div id="quarter">quarter</div> <div id="twenty">twenty</div> | ||
21 | </div> | ||
22 | |||
23 | <div class="row"> | ||
24 | <div id="fiveMod">five</div> <div id="minutes">minutes</div> <div id="to">to</div> | ||
25 | </div> | ||
26 | |||
27 | <div class="row"> | ||
28 | <div id="past">past</div> <div id="one">one</div> <div id="three">three</div> | ||
29 | </div> | ||
30 | |||
31 | <div class="row"> | ||
32 | <div id="two">two</div> <div id="four">four</div> <div id="five">five</div> | ||
33 | </div> | ||
34 | |||
35 | <div class="row"> | ||
36 | <div id="six">six</div> <div id="seven">seven</div> <div id="eight">eight</div> | ||
37 | </div> | ||
38 | |||
39 | <div class="row"> | ||
40 | <div id="nine">nine</div> <div id="ten">ten</div> <div id="eleven">eleven</div> | ||
41 | </div> | ||
42 | |||
43 | <div class="row"> | ||
44 | <div id="twelve">twelve</div> <div id="oclock">o'clock</div> | ||
45 | </div> | ||
46 | </div> | ||
47 | |||
48 | <!-- jinwei.me Baidu tongji analytics --> | ||
49 | <script type="text/javascript"> | ||
50 | var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); | ||
51 | document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F91918ac6d6854623883a2b546ebc00ac' type='text/javascript'%3E%3C/script%3E")); | ||
52 | </script> | ||
53 | |||
54 | </body> | ||
55 | </html> \ No newline at end of file | ||