-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
78 lines (67 loc) · 2.37 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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>old radio</title>
<link rel="stylesheet" href="css/reset.css" media="screen, all">
<link rel="stylesheet" href="css/style.css" media="screen, all">
<link rel="stylesheet" href="css/tron.css" media="screen, all">
<script src="js/yui/build/yui/yui-min.js"></script>
<script src="js/konami.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div class="global-radio">
<h1>Old Radio <span>Just CSS3 (no images) + HTML5 (audio API) + JS (YUI3)</span></h1>
<div class="case">
<div class="inner-case">
<div class="front-case">
<div class="panel">
<!-- power -->
<div class="power">
<span class="on-off active">
<a href="#" title="on / off"><span>on / off</span></a>
</span>
</div>
<!-- /power -->
<!-- retina -->
<div class="retina">
<!-- live -->
<span class="live">Live</span>
<!-- progress -->
<div class="progress">
<div class="pointer"><span></span></div>
</div>
<!-- stereo -->
<span class="stereo">stereo</span>
</div>
<!-- / retina -->
<!-- tuner -->
<div class="tuner">
<span class="controller"><span></span></span>
<span class="controllerCont"></span>
<div></div>
</div>
<!-- /tuner -->
<!-- volume -->
<div class="volume">
<span class="controller"><span></span></span>
<span class="controllerCont"></span>
<div></div>
<span class="label">- +</span>
</div>
<!-- /volume -->
</div>
</div>
</div>
</div>
</div>
<p class="gods">By <a href="http://twitter.com/bernarddeluna" title="@bernarddeluna" rel="external">Bernard De Luna</a>, <a href="mailto:[email protected]" title="Zanoni Miranda" rel="external">Zanoni Miranda</a> & <a href="http://twitter.com/zenorocha" title="@zenorocha" rel="external">Zeno Rocha</a></p>
<div id="audio_containner"></div>
<audio id="audio_chiado">
<source src="audio/chiado.mp3" type="audio/mpeg">
<source src="audio/chiado.ogg" type="audio/ogg">
</audio>
<a href="https://github.com/bernarddeluna/oldRadio"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
</body>
</html>