forked from lopezs/ableplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest6.html
More file actions
61 lines (49 loc) · 2.04 KB
/
test6.html
File metadata and controls
61 lines (49 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Able Player Test #6</title>
<link rel="stylesheet" href="tests.css" type="text/css">
<!-- Dependencies -->
<script src="../thirdparty/modernizr.custom.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="../thirdparty/jquery.cookie.js"></script>
<!-- Able Player CSS -->
<link rel="stylesheet" href="../styles/ableplayer.css" type="text/css"/>
<!-- Additional CSS for Playlist -->
<link rel="stylesheet" href="../styles/ableplayer-playlist.css" type="text/css"/>
<!-- Able Player JavaScript -->
<script src="../build/ableplayer.js"></script>
</head>
<body>
<h1>Able Player Test #6:<br/>Audio player with Playlist</h1>
<p>For additional tests see the <a href="index.html">Index of <em>Able Player</em> Examples</a>.</p>
<!-- use the following markup for each media element -->
<audio id="audio1" preload="auto" data-able-player>
<!-- source elements are optional when there's a playlist. -->
<!-- If ommitted, they will be constructed from the first playlist item -->
</audio>
<!-- use the following markup for each playlist -->
<!-- an AblePlayer playlist is any <ul> with class="able-playlist" -->
<!-- The value of data-player must match the id of the media element -->
<!-- Add data-embedded to embed the playlist into the media player -->
<!-- see documentation for additional details about markup -->
<ul class="able-playlist" data-player="audio1" data-embedded>
<li
data-mp3="../media/paulallen.mp3"
data-ogg="../media/paulallen.ogg">The Paul Allen Song</li>
<li
data-mp3="../media/php70alpha.mp3"
data-ogg="../media/php70alpha.ogg">PHP 7.0 Alpha</li>
<li
data-mp3="../media/frenchsong.mp3"
data-ogg="../media/frenchsong.ogg" lang="fr">Une Chanson Française</li>
<li
data-mp3="../media/smallf.mp3"
data-ogg="../media/smallf.ogg">Man With Small F (The Inaccessible PDF Song)</li>
<li
data-mp3="../media/everyday.mp3"
data-ogg="../media/everyday.ogg">Every Day</li>
</ul>
</body>
</html>