-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>自定义背景图片</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="background"></div>
<div class="mask"></div>
<div class="rectangle">
<div class="rectangle-top">
<img src="./demo.webp" alt="Image">
</div>
<div class="rectangle-bottom">
<p class="title">专辑 < PHOENIX ></p>
<p class="subtitle">2020/02/12</p>
</div>
</div>
<div class="song-info">
<p class="song-title">PHOENIX</p>
<p class="song-artist">BURNOUT SYNDROMES</p>
</div>
<div class="lyrics-container">
<ul></ul>
</div>
<audio id="audio"
src="https://ws6.stream.qqmusic.qq.com/C400001J1BGt4drJGs.m4a?guid=647652834&vkey=093DB1A3ADCD87AB5FCAE1F5650210BA2768532D64BEC47F2B735E3A8549607BE9BA666D997D1D0D6546C16F5A9F913D963ED4D99B098523__v21ea059de&uin=2806341964&fromtag=120032"
crossorigin="anonymous"></audio> <!-- need to use online music url but not local file path, or will throw crossOrigin fault -->
<div class="controls">
<button id="playPauseBtn" class="play"></button>
<button id="nextBtn" class="next"></button>
<div id="progressContainer">
<div id="progressBar"></div>
</div>
<div id="timeDisplay">00:00 / 00:00</div> <!-- 添加显示时间的元素 -->
</div>
<script src="./lyrics.js"></script>
<script src="./index.js"></script>
</body>
</html>