-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
49 lines (45 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/css/main.css" rel="stylesheet" />
<link href="static/css/overlay.css" rel="stylesheet" />
<title>USAW</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div id="overlay" class="overlay">
<a href="https://hackdaddy.dev/blog/unsuperior-ai-waifu/">Unsuperior AI Waifu</a>
<h2>
How to use
</h2>
<ul>
<li>Drag your finger around to make her move her head.</li>
<li>Poke her body. She'll probably get mad though.</li>
<li>Tap the textbox at the bottom to speak with her.</li>
</ul>
<button id="start-button" type="button">Yessir</button>
<div id="warning">
</div>
</div>
<canvas id=canvas></canvas>
<div class="ui">
<div id="nametag" class="nametag">Name</div>
<div class="polkadot-background textbox ui-body" id="transcription">
Tap to talk...
</div>
</div>
<script src="https://cubism.live2d.com/sdk-web/cubismcore/live2dcubismcore.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/dylanNew/live2d/webgl/Live2D/lib/live2d.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/pixi.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/pixi-live2d-display/dist/index.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://aka.ms/csspeech/jsbrowserpackageraw"></script>
<script type="module" src="static/js/main.js"></script>
</body>
</html>