forked from GM-Script-Writer-62850/HTML5-Music-Player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />
<title>Music Player</title>
<link href="/icons/sound2.png" type="image/png" rel="shortcut icon">
<link href="player.css" type="text/css" rel="stylesheet"/>
<script src="playlist.php" type="application/javascript"></script>
<script src="player.js" type="application/javascript"></script>
<script src="id3-minimiezd.js"></script>
</head>
<body onload="init();">
<div id="player">
<img id="cover"/>
<div id="infos">
<h4 id="title"></h4>
<p>
<span id="artist"></span>
</p>
<p>
<span id="album"></span>
</p>
<div id="controls">
<p>
<input id="back" type="button" value="|◀◀"/>
<input id="next" type="button" value="▶▶|"/>
</p>
<p>
<label for="shuffle">Shuffle:</label>
<input id="shuffle" type="checkbox"/>
<label for="repeat">Repeat: </label>
<input id="repeat" type="checkbox"/>
</p>
</div>
<p id="error"></p>
</div>
<audio id="audio" controls>
This is your browser speaking, I don't support HTML5 cause I am too old to learn new tricks.
</audio>
</div>
<br/>
<div id="playlist"></div>
</body>
</html>