-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 2.41 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
<!DOCTYPE html>
<!--
Author: Jeffrey Lo
-->
<html>
<head>
<title>JQuery + HTML5 Audio Player</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/Player Css.css" title="new" type="text/css" media="screen" charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="/AudioPlayer Script.js"></script>
</head>
<h1>HTML 5 Audio Player</h1>
<audio id="track1" preload="true">
<source src="https://theliturgists.podbean.com/mf/web/caeqdq/One_Wild_Life_Body_Part_4_-_The_Liturgists_Podcast.mp3">
<source src="http://techslides.com/demos/samples/sample.ogg">
</audio>
<div class="audio-block">
<div class="error">Browser Not Compatible</div>
<div class="audio-widget first-play">
<div class="player">
<div class="action">
<div class="play">
<div class="play-button"></div>
</div>
<div class="pause">
<div class="pause-button"></div>
</div>
</div>
<div class="labels">
<div class="title-wrapper">
<div class="title" title="Series Part 1" data-title="Series Part 1">Series Part 1</div>
</div>
<div class="artistName" title="Speaker">Artist's Name Here</div>
</div>
<div class="secondary-controls">
<div class="time">
<span class="audio-progress"></span>
<span class="audio-total"></span>
</div>
</div>
<div class="track" style="width: 633px;">
<span class="played"><span class="icon"></span></span>
</div>
</div>
<!-- / player -->
</div>
<!-- / Container-->
</div>
<div>
<p class="test"></p>
<p class="test2"></p>
<p class="test3"></p>
<p class="test4"></p>
<p class="test5"></p>
</div>
</body>
</html>