-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (92 loc) · 3.56 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
<!doctype html>
<html>
<head>
<!--
* djcrackhome's streamPlayer
*
* Developer: djcrackhome <[email protected]>
* Thanks to Raimund B., Nico N., Patrick E.
*
* License: This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
*
* URL: https://github.com/djcrackhome/streamPlayer
-->
<meta charset="utf-8">
<!-- JavaScript Library Requirements -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<!-- Local JavaScript Library Requirements -->
<script src="assets/js/modernizr.min.js"></script>
<script src="assets/js/jquery.mousewheel.min.js"></script>
<script src="assets/js/jquery.mCustomScrollbar.min.js"></script>
<script src="assets/js/jwplayer.min.js"></script>
<!-- Google Font Open Sans CSS Import for 'webfont' functionality -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<!-- Local CSS Settings -->
<link href="assets/css/streamPlayer.css" rel="stylesheet" type="text/css">
<link href="assets/css/jquery.mCustomScrollbar.css" rel="stylesheet" type="text/css">
<link href="assets/css/sliderStyle.css" rel="stylesheet" type="text/css" >
<!--[if gte IE 9]>
<style type="text/css">
#topPlayer {
filter: none !important;
}
.ui-slider-handle {
top: -6px;
}
</style>
<![endif]-->
<!--[if lte IE 8]>
<style type="text/css">
#topPlayer {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#636365', endColorstr='#333334',GradientType=0);
}
#streamPlayer .songInfo {
z-index: 3;
filter: dropshadow(color=#333333, offx=0.6, offy=0.6);
}
.ui-slider-handle {
top: -6px;
}
</style>
<![endif]-->
<title>djcrackhome's streamPlayer</title>
</head>
<body>
<section id="streamPlayer">
<div id="topPlayer">
<div id="songContainer">
<div id="songTitle" class="songInfo">Loading...</div>
<div id="songArtist" class="songInfo">Loading...</div>
<div id="songPlayer">
<div id="playerPause" class="playerButton"></div>
<div id="playerStart" class="playerButton"></div>
<div id="playerPlaylist" class="playerButton"></div>
<div id="playerVolume" class="playerButton"></div>
<div id="playerRange">
<div id="slider"></div>
<span class="volume"></span>
</div>
<div id="playerObject"></div>
</div>
</div>
<div id="coverContainer">
<img src="assets/images/no_cov.png" alt="" id="coverContainerImage" />
</div>
</div>
<aside id="bottomPlayer">
<div id="bottomPlaylist">
<ul id="bottomPlaylistListing">
<li>Loading</li>
</ul>
</div>
</aside>
<footer>
provided by <a href="http://www.stream.cx/" target="_blank">stream.cx | Next Generation Hosting</a>
</footer>
</section>
<script src="assets/js/streamPlayer.min.js" type="text/javascript" ></script>
</body>
</html>