-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 820 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 820 Bytes
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
<html>
<head>
<title>songle-sync-app-browser</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://api.songle.jp/v2/api.js"></script>
<script src="./secrets.js"></script>
<script src="./viz.js"></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<ul id="beats">
<li class="b1"></li>
<li class="b2"></li>
<li class="b3"></li>
<li class="b4"></li>
</ul>
<div id="chord"></div>
<div id="widget"></div>
<ul id="widget_ctrl">
<li class="play">再生</li>
<li class="pause">停止</li>
<li class="head">先頭</li>
<li class="seekto_chorus">サビ</li>
</ul>
<div class="memo">
動画の操作はボタン(API経由)で行ってください
</div>
<div id="chorus_alert">サビ</div>
</body>
</html>