-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
45 lines (45 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://cdn.bootcss.com/font-awesome/5.12.1/css/all.css"
rel="stylesheet"
/>
<link href="./assets/css/platelet.css" rel="stylesheet" type="text/css" />
<script>
delete module.exports;
</script>
</head>
<body>
<div class="platelet" style="display: block;">
<div class="platelet-tips"></div>
<div style="width: 250px;overflow: hidden;">
<canvas
id="live2d"
width="650"
height="600"
class="live2d"
style="width: 325px;height: 300px;"
></canvas>
</div>
<div class="platelet-tool">
<i class="fa fa-eye eye"></i>
<i class="fa fa-music music"></i>
<i class="fa fa-comment comment"></i>
<i class="fa fa-camera camera"></i>
<i class="fa fa-cog cog"></i>
</div>
</div>
<div id="main" class="container"></div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="./assets/js/live2d.js"></script>
<script src="./assets/js/store.js"></script>
<script src="./assets/js/platelet.js"></script>
<script type="text/javascript">
loadlive2d("live2d", "./assets/kesshouban_v2/model.json");
</script>
</html>