-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Player</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="music-content-bg">
<div class="music-content">
<div class="music-box">
<!-- 上部分 -->
<article>
<div class="m-img-box">
<div class="m-img-content"></div>
</div>
<div class="m-description-content">
<article>
<p class="m-title">音乐名</p>
<p class="m-author">作者</p>
</article>
<div class="m-btn-box">
<button class="m-previous-btn">
<svg class="icon" aria-hidden="true" style="transform: scale(-1)">
<use href="#icon-xiayishou"></use>
</svg>
</button>
<button class="m-play-btn">
<svg class="icon" aria-hidden="true">
<use href="#icon-bofang"></use>
</svg>
</button>
<button class="m-next-btn">
<svg class="icon" aria-hidden="true">
<use href="#icon-xiayishou"></use>
</svg>
</button>
</div>
</div>
</article>
<!-- 下部分 -->
<section>
<span class="m-current-time">00 : 00</span>
<div class="m-progress-bar">
<div class="m-progress-main">
<span class="m-progress-btn"></span>
</div>
<div class="m-progress-load"></div>
</div>
<span class="m-total-time">00 : 00</span>
</section>
</div>
</div>
</div>
<script src="iconfont.js"></script>
<script src="index.js"></script>
</body>
</html>