-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.01 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>初音ミク 歌詞表示</title>
<script src="main.js" defer></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/textalive-app-api/dist/index.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<div id="content">
<div id="container">
<p>歌詞があれば表示します</p>
</div>
<div id="beatbar"></div>
</div>
<div id="overlay">
<div id="media"></div>
<div id="meta">
<div id="artist">
<strong>artist:</strong> <span>-</span>
</div>
<div id="song">
<strong>song:</strong> <span>-</span>
</div>
</div>
<div id="control" style="display: none;">
<button id="play" disabled>再生</button>
<button id="jump" disabled>歌詞頭出し</button>
<button id="pause" disabled>一時停止</button>
<button id="rewind" disabled>巻き戻し</button>
<span id="position"><strong>-</strong> [ms]</span>
</div>
</div>
</html>