This repository was archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.58 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Player</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="lib/jquery.cloudplayer.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="lib/jquery.cloudplayer.css">
<script src="http://connect.soundcloud.com/sdk.js"></script>
<script src="http://connect.soundcloud.com/soundmanager2/soundmanager2.js"></script>
<script>
SC.initialize({
client_id: "962849efee506d3989bd1525a492ee53"
});
$(function() {
SC.stream("/tracks/293", {
autoPlay: true,
ontimedcomments: function(comments) {
console.log(comments[0].body);
}
});
});
</script>
<script type="text/javascript">
$(function() {
$('#cloudPlayer').cloudplayer();
});
</script>
</head>
<body>
<h1>
Der alte Player
</h1>
<div id="cloudPlayer">
<a href="https://soundcloud.com/cutcopy/cut-copy-need-you-now-1">Cut Copy test</a>
</div>
<br>
</body>
</html>