-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GirlsOnLine</title>
<!-- 引入Js -->
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/litstronger/live2d-moc3@master/js/frame/live2dcubismcore.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.6.1/pixi.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/litstronger/live2d-moc3@master/js/live2dcubismframework.js"></script>
<script src="https://cdn.jsdelivr.net/gh/litstronger/live2d-moc3@master/js/live2dcubismpixi.js"></script>
<script src="https://cdn.jsdelivr.net/gh/litstronger/live2d-moc3@master/js/l2d.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
<select
name="charactor"
id="char-select"
onchange="charChange()"
style="z-index: 100000"
></select>
<select
name="motions"
id="motion-select"
onchange="motionChange()"
style="z-index: 100000"
></select>
<div
class="Canvas"
id="L2dCanvas"
style="position: fixed; opacity: 1; right: 30px; z-index: -1"
>
<canvas
width="600"
height="960"
style="touch-action: none; cursor: inherit"
id="canvanInner"
></canvas>
</div>
<a
href="./introduction.html"
target="_blank"
style="position: absolute; left: 0; bottom: 0"
>声明条款</a
>
<script src="./viewer.js"></script>
<script src="./index.js"></script>
</body>
</html>