-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 2.32 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body { width:100%; height:100%; margin:0; padding:0; overflow:hidden; }
</style>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.3.0/css/all.css">
<link rel="stylesheet" href="css/litegui.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="https://webglstudio.org/users/evalls/imgs/logo.png" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
</head>
<body>
<title>Face Motion Studio</title>
<div id="loading" class="modal hidden" style="background-color:rgba(51, 51, 51, 0.5); position: absolute; width: 100%; height: 100%;
justify-content: center; align-items: center; z-index: 100; color: white; font-size: larger;">
<p>Loading avatar, please wait</p>
</div>
<div id="capture" class="hidden" draggable="false">
<div id="capture-area" class="flex-horizontal" style ="width: 100%;">
<div id="video-area" class="flex-vertical">
<video id="input-video"></video>
<video id="recording" class="hidden"></video>
</div>
</div>
</div>
<div id="buttons-container" class="flex-vertical left-container"></div>
<div id="controls-container" class="flex-vertical right-container bottom-container controls hidden"></div>
<canvas id="threejs-canvas"></canvas>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- <script type="esms-options">
{
"polyfillEnable": ["json-modules"]
}
</script>-->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://cdn.skypack.dev/three@0.136"
}
}
</script>
<script type="text/javascript" src="js/libs/litegui.js"></script>
<script src="./js/libs/liveLinkParser/stream.js" ></script>
<script src="./js/libs/liveLinkParser/liveLinkParser.js" ></script>
<script src="./js/app.js" type="module"></script>
</body>
</html>