-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Plum音乐合集</title>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="top">
<br>
<h1>Plum音乐合集</h1>
<p>
<a href="log.txt">更新日志</a>2022.12.28
</p>
<br>
</div>
<br>
<div id="main">
<div class="music">
<div class="name">音乐名</div>
<div class="note">备注</div>
<div class="link">相关链接</div>
</div>
</div>
<br>
<div id="player">
<audio src="" id="audio" autoplay></audio>
<br>
<p>直接点击音乐列表开始播放</p>
<div id="axis">
<div id="axis-inner"></div>
</div>
<br>
<div id="out">
<div id="name">---</div>
<div id="time">---/---</div>
<br>
<div id="link">音乐链接:
<a href="" id="link-a">---</a>
</div>
</div>
<br>
<div id="control">
<div id="pause" onclick="ctrl('pause')">播放/暂停</div>
<div id="stop" onclick="ctrl('stop')">停止</div>
<div id="last" onclick="ctrl('last')">上一曲</div>
<div id="next" onclick="ctrl('next')">下一曲</div>
<br>
<div id="volume">音量
<input type="range" id="volume-range" max="100" min="0" step="10" value="20">
</div>
<div id="timeset">时移
<input type="text" id="timeset-range">
<input type="button" id="timeset-btn" onclick="ctrl('time')" value="确定">
</div>
<br>
<div id="playMode-0" onclick="mode(0)">单曲播放</div>
<div id="playMode-1" onclick="mode(1)">单曲循环</div>
<div id="playMode-2" onclick="mode(2)">顺序播放</div>
<br>
</div>
<br>
</div>
<br>
<div id="bottom">
<p>
网易云:
<a href="https://music.163.com/#/artist?id=49726260">Plum - Melodic Artist</a>
Apple Music:
<a href="https://music.apple.com/cn/artist/plum/1215180388">Plum</a>
</p>
</div>
<script>load();</script>
</body>
</html>