-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·49 lines (41 loc) · 1.28 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
<!doctype html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Saru FM</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="control">
<div class="repeat"><i class="fa" title="Random"></i></div>
<div class="prev"><i class="fa fa-chevron-left"></i></div>
<div class="next"><i class="fa fa-chevron-right"></i></div>
<div class="like"><i class="fa fa-heart"></i></div>
</nav>
<article id="player">
<section id="main">
<div alt="album" id="cover"></div>
<div class="center">
<span class="start">
<i class="fa fa-play"></i>
</span>
</div>
</section>
<section id="progress">
<span class="current"></span>
</section>
<hgroup>
<h1 class="name">Album's Name</h1>
<h2 class="sub-title">Album's Sub-title</h2>
</hgroup>
<audio id="music" src=""></audio>
</article>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="//leancloud.cn/scripts/lib/av-0.4.6.min.js"></script>
<script type="text/javascript" src="js/playlist.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>