-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 883 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Lightning for SoundCloud</title>
<link rel="stylesheet" href="css/lightning.css" />
</head>
<body>
<section class="pane" id="pane-fresh">
<button id="connect">Connect with SoundCloud</button>
</section>
<section class="pane" id="pane-player">
<div class="active-sound">
<img src="" class="artwork" />
<a href="#" class="song"></a>
<a href="#" class="artist"></a>
<span class="time"></span>
</div>
<button id="playback-control">Play / Pause</button>
<button id="next-control">Next</button>
</section>
<script src="http://connect.soundcloud.com/sdk.js"></script>
<script src="js/cloud.js"></script>
<script src="js/player.js"></script>
<script src="js/lightning.js"></script>
</body>
</html>