-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.html
48 lines (47 loc) · 1.85 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>html5 player by 三水清(theowang)|js8.in</title>
<link rel="stylesheet" href="css/player.css" />
</head>
<body>
<div id="all">
<div id="player">
<div class="playerContainer" id="playerContainer">
</div>
<div class="playerBg">
<div class="container">
<header>
<a href="#" id="play" title="播放/暂停" class="icon" onclick="return false;"><img src="img/transparent.gif" class="play" /></a>
<a href="#" id="next" title="下一首" class="icon" onclick="return false;"><img src="img/transparent.gif" /></a>
<p class="progress"><span id="progress"></span><b><time id="curTime">00:00</time>/<time id="allTime">00:00</time></b></p>
<a href="#" id="vol" title="静音" class="icon" onclick="return false;"><img src="img/transparent.gif" class="mute" /></a>
</header>
<section>
<menu>
<a href="#" id="lrc" title="开启/关闭歌词" class="icon" onclick="return false;"><img src="img/transparent.gif" class="Off" /></a>
<a href="#" id="repeat" title="循环模式" class="icon" onclick="return false;"><img src="img/transparent.gif" class="On" /></a>
</menu>
<div class="songs">
<div id="lists" class="lists" >
<div class="songsContainer fl">
<ul id="songs">
</ul>
</div>
<div class="lrcContent fl">
<div id="lrcContent"></div>
<!--<div class="lrcTop"></div>-->
<!--<div class="lrcBottom"></div>-->
</div>
</div>
</div>
</section>
<footer>HTML5 Player</footer>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/player2.js"></script>
</body>
</html>