-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbbplayer.html
56 lines (56 loc) · 1.77 KB
/
bbplayer.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
<!DOCTYPE html>
<html>
<head>
<title>BBPlayer.JS</title>
<link rel="stylesheet" href="css/bbplayer-minimal.css"/>
</head>
<body>
<div class="bbplayer">
<span class="bb-rewind"></span>
<span class="bb-play"></span>
<span class="bb-forward"></span>
<div class="playerWindow">
<div class="bb-track-display">
<span class="bb-trackTime">--:--</span>
<span class="bb-trackTitle"> </span>
<span class="bb-trackLength">--:--</span>
</div>
<div class="bb-album-display">
<span class="bb-artist">Brian Browne Trio</span> -
<span class="bb-album">Blue Browne</span>
</div>
</div>
<!--
<span class="bb-albumCover"> </span>
-->
<audio loop>
<source
src="media/Blue Browne.ogg" type="audio/ogg"
data-album="Blue Browne"
data-artist="Brian Browne Trio"
data-image="media/Blue Browne small.jpg"/>
<source
src="media/Blue Browne.mp3" type="audio/mpeg"
data-album="Blue Browne"
data-artist="Brian Browne Trio"
data-image="media/Blue Browne small.jpg"/>
<source
src="media/Georgia.ogg" type="audio/ogg"
data-album="Blue Browne"
data-artist="Brian Browne Trio"
data-image="media/Beatles small.jpg"/>
<source
src="media/Georgia.mp3" type="audio/mpeg"
data-album="Blue Browne"
data-artist="Brian Browne Trio"
data-image="media/Beatles small.jpg"/>
HTML5 Audio Not Available
</audio>
<!--
<div>Optional debug panel:</div>
<div class="bb-debug"></div>
-->
</div>
<script src="js/bbplayer.js"></script>
</body>
</html>