-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
74 lines (72 loc) · 2.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>pixel-heroes-spine</title>
<link href="icon.png" rel="icon" type="image/png">
<link rel="stylesheet" href="style/index.css">
</head>
<body>
<div id="container">
</div>
<div class="panel-main">
<div class="panel-header">
<div class="title">
<a href="https://github.com/memo-db/pixel-heroes-spine" target="_blank">
pixel-heroes-spine</a>
</div>
<div class="list-top">
<div class="list-main">
<form>
<label class="list-item" for="character">
<input id="character" name="inventoryItems" type="radio" value="character">
<span>character</span>
</input>
</label>
<label class="list-item" for="role">
<input id="role" name="inventoryItems" type="radio" value="role">
<span>role</span>
</input>
</label>
</form>
</div>
<div class="view-mode">
<form>
<label class="list-item" for="list-view">
<input id="list-view" name="inventoryItems" type="radio" value="list">
<span>list</span>
</input>
</label>
<label class="list-item" for="grid-view">
<input id="grid-view" name="inventoryItems" type="radio" value="grid">
<span>grid</span>
</input>
</label>
</form>
</div>
</div>
<div class="list-header">
<div class="list-item">
<button class="button-sort" data="id">id</button>
</div>
<!--
<div class="list-item">
<button class="button-sort" data="name">
name
</button>
</div>-->
<div class="list-item">
<button class="button-sort" data="content_rating">c</button>
</div>
<div class="list-item">
<button class="button-sort" data="rating">r</button>
</div>
</div>
</div>
<form id="container-data">
</form>
</div>
<script src="script/spine-player_3.8.js">
</script>
<script src="script/index.min.js">
</script>
</body>