-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
64 lines (64 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0;">
<title>Responsive jPlayer Layout</title>
<link href='http://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="dist/css/app.min.css" />
<script src="dist/js/shims.min.js"></script>
</head>
<body>
<div id="white-noise-player" class="cp-jplayer"></div>
<header>
<h1 id="logo"></h1>
</header>
<div id="wrapper">
<div id="content">
<div id="music">
<h2>Music</h2>
<div class="player-wrapper">
<div id="cp_container">
<div class="cp-container">
<div class="cp-buffer-holder">
<div class="cp-buffer-1"></div>
<div class="cp-buffer-2"></div>
</div>
<div class="cp-progress-holder">
<div class="cp-progress-1"></div>
<div class="cp-progress-2"></div>
</div>
<div class="cp-circle-control"></div>
<ul class="cp-controls">
<li><a href="#" class="cp-play" tabindex="1">play</a></li>
<li><a href="#" class="cp-pause" style="display:none;" tabindex="1">pause</a></li>
</ul>
</div>
<div class="jp-playlist">
<ul>
<li></li> <!-- Empty <li> so your HTML conforms with the W3C spec -->
</ul>
</div>
</div>
</div>
</div>
<h2>About Me</h2>
<div id="about">
<ul>
<li>jPlayer: <a href="https://github.com/thepag">Mark Panaghiston - @thepag</a></li>
<li>jPlayer Skin: <a href="http://www.danlatterner.com/#dan">Dan Latterner</a></li>
<li>Skin Implementation: <a href="http://www.beyondhyper.com/about">Derick Montague</a></li>
<li>Music: Snorkel - Indie Rock from Kalamazoo, MI</li>
</ul>
</div>
<div id="contact">
<h2>Contact Me</h2>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
<a href="https://github.com/BeyondHyper/responsive-jPlayer"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png" alt="Fork me on GitHub"></a>
<script src="dist/playlist/playlist.js"></script>
<script src="dist/js/app.min.js"></script>
</body>
</html>