-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.21 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Audioplayer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/shortcut.png">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Audioplayer</h1>
<p>html5 audio api</p>
</div>
<div id="player-wrapper">
<div id="player-header-logo">
<figure><img src="img/1.jpg" alt="Music"></figure>
</div>
<div id="audio-player">
<div id="audio-info">
<br>
<strong><span class="artist"></span> - <span class="title"></span></strong>
</div>
</div>
<div id="player-btn">
<button id="prev"></button>
<button id="play"></button>
<button id="pause"></button>
<button id="stop"></button>
<button id="next"></button>
</div>
<!-- Add song <div class="addSong" style="width:300px;margin: auto;">
<input type="text" placeholder="Add new song" id="addSongName">
<span class="glyphicon glyphicon-info-sign" title="This song must be in directive with your player in folder 'media'" style="cursor: pointer;"></span>
<button type="button" style="width:60px;" class="btn btn-success" id="addSong">Add</button>
<input type="text" id="addSongTitle" placeholder="Title">
<input type="text" id="addSongArtist" placeholder="Artist">
</div>-->
<br>
<input type="range" id="volume" min="0" max="10" value="10">
<br>
<div id="tracker">
<div id="progressBar">
<span id="progress"></span>
</div>
<span id="duration"></span>
</div>
<br>
<ul id="playlist">
</ul>
<br>
</div>
<br>
</div>
</body>
</html>