-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ruska 音乐杂志</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<header>
<h1>Ruska 音乐杂志</h1>
<div class="header-buttons">
<button id="langToggle">English</button>
<a href="https://github.com/jqlong17/RuskaMusicMagazine" target="_blank" id="contactUs">联系我们</a>
</div>
</header>
<div id="player">
<button id="playPause">播放</button>
<div id="nowPlaying"></div>
<audio id="audio" loop></audio>
</div>
<div id="tabSwitcher">
<button class="tab active" data-tab="home">首页</button>
<button class="tab" data-tab="favorites">收藏</button>
<button class="tab" data-tab="recent">最近在听</button>
</div>
<div class="grid">
<!-- 这里将动态生成15个音乐项 -->
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>