-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
121 lines (107 loc) · 2.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>HTML5 Canvas and Audio Experiment</title>
<meta name="keywords" content="html5, canvas, experiment" />
<meta name="description" content="An html5 canvas experiment by 9elements.com" />
<script>
CLICK_TWITTER = false;
</script>
<script src="processing.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery-1.6.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="twitterResponse.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
body {
background: #000;
color: #aaa;
font-family: Helvetica, sans-serif;
margin:0;
padding:0;
overflow:hidden;
}
a {
text-decoration:none;
}
#theapt {
}
#stuff {
postion:absolute;
}
#tweet {
font-family:Helvetica, Arial;
position:absolute;
top:400px;
left:260px;
width:640px;
}
#tweet h1 {
display:block;
font-family:Helvetica, Arial;
font-size:40px;
font-weight:bold;
color:#fff;
margin:0 0 10px 0;
padding:0;
}
#tweet strong {
display:block;
font-size:16px;
}
#about {
font-size:11px;
position:absolute;
font-weight:normal;
bottom:20px;
left:20px;
}
#social {
font-size:11px;
position:absolute;
font-weight:normal;
bottom:13px;
right:20px;
width: 120px;
}
#about a {
color: #59cdec;
}
#rails-development {
position: absolute;
bottom: 20px;
left: 50%;
margin-left: -150px;
width: 300px;
height: 15px;
font-size: 12px;
color: #AAA;
}
#rails-development a {
color: #59cdec;
font-weight: bold;
}
</style>
</head>
<body>
<script src="modernizr-0.9.min.js"></script>
<canvas id="theapt" width="100" height="100"></canvas>
<div id="tweet">
LOADING
</div>
<div id="stuff">
<audio id="audio">
Your browser does not support the <code>audio</code> element.
</audio>
</div>
<div id="about">
Made with love by <a href="http://9elements.com/"><strong>9elements.com</strong></a>
</div>
<div id="social">
<a href="https://twitter.com/9elements">Follow @9elements</a>
</div>
<div id='rails-development'>
Hey coders! Check out our <a href="http://web.9elements.com/rails-development">Rails Development</a> page!
</div>
</body>
</html>