-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
73 lines (63 loc) · 2.02 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!-- META -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- tell mobile browsers to scale -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<title>HTML5 Audio Player with Flash Fallback</title>
<!-- CSS: implied media="all" -->
<link rel="stylesheet" href="css/styles.css">
<style>
body {
margin: 50px;
}
.audio-list td {
cursor: pointer;
}
</style>
</head>
<body>
<table class="audio-list">
<tr>
<td>
<a href="music/MonaLisa.mp3" data-ogg="music/MonaLisa.ogg" class="audio-start"><i>Song Sample</i></a>
</td>
<td class="audio-title">
Mona Lisa
</td>
</tr>
<tr>
<td>
<a href="music/OvertheRainbow.mp3" data-ogg="music/OvertheRainbow.ogg" class="audio-start"><i>Song Sample</i></a>
</td>
<td class="audio-title">
Over the Rainbow
</td>
</tr>
<tr>
<td>
<a href="music/TimetoRelax.mp3" data-ogg="music/TimetoRelax.ogg" class="audio-start"><i>Song Sample</i></a>
</td>
<td class="audio-title">
Time to Relax
</td>
</tr>
</table>
<!--p>Play progress (seconds): <span id="progress"></span> / <span id="duration"></span></p>
<p class="progressbar"><span></span></p-->
<!-- Javascript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write("<script src='js/libs/jquery.min.js'>\x3C/script>")</script>
<script src="js/html5audio.js"></script>
<script>
$(function() { html5audio.init() });
</script>
</body>
</html>