-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>Musasic</title>
<link rel="stylesheet" href="css/photon.css">
</head>
<body>
<div class="window">
<header class="toolbar toolbar-header">
<div class="toolbar-actions">
<div class="btn-group">
<button class="btn btn-default" onclick="playPrevious()">
<span class="icon icon-to-start"></span>
</button>
<button class="btn btn-default active" onclick="play()" id="play-button">
<span class="icon icon-play"></span>
</button>
<button class="btn btn-default" onclick="playNext()">
<span class="icon icon-to-end"></span>
</button>
</div>
<span style="margin-left:40px">
<span id="time-left">00:00</span> | <span id="total-time">00:00</span>
</span>
<button class="btn btn-default btn-large pull-right" onclick="chooseMusic()">
<span class="icon icon-plus icon-text"></span>Add
</button>
</div>
</header>
<div class="window-content">
<input type="file" style="display: none" multiple onchange="musicSelected()">
<audio src=""></audio>
<div class="padding-more">
<h4></h4>
<div>
<table>
<thead>
<tr>
<th>Title</th>
<th>Artist</th>
<th>Duration</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
</div>
</div>
<footer class="toolbar toolbar-footer">
<div class="toolbar-actions">
<button class="btn btn-default pull-right" onclick="clearPlaylist()">
Clear Playlist
</button>
</div>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>