-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (161 loc) · 5.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<!-- <link rel="stylesheet" href="all.css" /> -->
<script src="https://kit.fontawesome.com/f97842efdb.js" crossorigin="anonymous"></script>
<title>@your-Ehsan | JS — Simple MusicPlayer</title>
<link rel="shortcut icon" href="https://github.com/your-ehsan.png" type="image/x-icon">
</head>
<body>
<audio src="" id="audio-source"></audio>
<!-- home section -->
<section class="section--home">
<!-- carousel -->
<div class="section--carousel">
<img src="./assets/images/img_1.jpg" alt="" class="active" />
<img src="./assets/images/img_2.jpg" alt="" class="" />
<img src="./assets/images/img_3.webp" alt="" class="" />
</div>
<!-- playlists area -->
<div class="playList">
<h1 class="playList--heading">Recently played</h1>
<div class="playList-group">
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_1.jpg"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_2.jpg"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_3.webp"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
</div>
</div>
<div class="playList">
<h1 class="playList--heading">Popular near you</h1>
<div class="playList-group">
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_1.jpg"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_2.jpg"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
<div class="playLists-group--cards">
<img
class="playLists-group--cards-img"
src="./assets/images/img_3.webp"
alt=""
/>
<p class="playLists-group--cards-name">Top internationals</p>
</div>
</div>
</div>
<!-- playlists area -->
<!-- carousel -->
</section>
<!-- MusicPlayer section-->
<section class="MusicPlayer">
<div class="icons-container">
<span class="fas fa-chevron-left back-btn icon hide"></span>
<span class="fas fa-bars-progress nav-btn icon hide"></span>
</div>
<h1 class="MusicPlayer--currentSong"></h1>
<p class="MusicPlayer--artist hide"></p>
<img
src="./assets/images/img_1.jpg"
class="MusicPlayer--cover hide"
alt=""
/>
<div class="MusicPlayer--SeekBar-container">
<input
placeholder="MusicPlayer--SeekBar"
class="MusicPlayer--SeekBar"
type="range"
value="0"
/>
<span class="currentTime hide"></span>
<span class="durationTime hide"></span>
</div>
<div class="MusicPlayer--controls">
<span class="fas fa-redo Redo"></span>
<div class="MusicPlayer--controls--main">
<i class="fas fa-backward BackWard active"></i>
<i class="fas fa-play Play active"></i>
<i class="fas fa-pause Pause"></i>
<i class="fas fa-forward ForWard active"></i>
</div>
<input
class="volume-slider"
placeholder="volume controller"
type="range"
max="1"
value="1"
step="0.1"
/>
<span class="fas fa-volume-up Volume"></span>
</div>
</section>
<section class="PlayList ">
<div class="PlayList--heading-container">
<span class="fa back-btn icon fa-chevron-left"></span>
<h1 class="PlayList--Title">PlayList</h1>
</div>
<div class="PlayList--Queue-container">
<div class="PlayList--Queue">
<div class="PlayList--Queue-cover">
<img src="./assets/images/img_1.jpg" alt="">
<i class="fa fa-pause"></i>
</div>
<p class="PlayList--Queue-name">Song 1</p>
</div>
<div class="PlayList--Queue">
<div class="PlayList--Queue-cover">
<img src="./assets/images/img_2.jpg" alt="">
<i class="fa fa-pause"></i>
</div>
<p class="PlayList--Queue-name">Song 2</p>
</div>
<div class="PlayList--Queue">
<div class="PlayList--Queue-cover">
<img src="./assets/images/img_3.webp" alt="">
<i class="fa fa-pause"></i>
</div>
<p class="PlayList--Queue-name">Song 3</p>
</div>
</div>
</section>
<!-- MusicPlayer section-->
<!-- home section -->
</body>
<script src="./main.js"></script>
</html>