-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Ahmad Jafari">
<meta name="description" content="Simple offline music player with HTML, CSS and Vanilla JavaScript">
<title>Music Player</title>
<link rel="icon" href="./favicon.png">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<section id='player'>
<!-- Information -->
<div id="cover-container">
<img alt="Music's cover image" id="cover">
</div>
<h2 id="title"></h2>
<h3 id="artist"></h3>
<img id="like"></img>
<audio id="audio"></audio>
<!-- Time Stream -->
<div class="time-wrapper">
<div class="duration-wrapper">
<span id="current-time"></span>
<span id="duration"></span>
</div>
<div id="progress-container">
<svg width="2000" height="400" xmlns="http://www.w3.org/2000/svg" id="visualizer-container"></svg>
<div id="progress"></div>
</div>
</div>
<!-- Controllers -->
<div class="controllers">
<div class="controller">
<img src="./images/shuffle.svg" id="shuffle">
</div>
<div class="controller">
<img src="./images/next.svg" id="previous" title="Previous">
</div>
<div class="controller">
<img src="./images/play.svg" id="play">
</div>
<div class="controller">
<img src="./images/next.svg" id="next" title="Next">
</div>
<div class="controller">
<img src="./images/repeat.svg" id="repeat">
<span id="repeat-once">1</span>
</div>
</div>
</section>
<div id="dialog">
<img alt="Music's cover image" id="big-cover">
</div>
<script src="./script.js"></script>
</body>
</html>