-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 1.2 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
<html>
<head>
<title>TextAlive App API | script tag (basic) example</title>
<link rel="stylesheet" href="./index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<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>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/textalive-app-api/dist/index.js"></script>
<script src="./index.js"></script>
</body>
</html>