-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathentry.html
35 lines (35 loc) · 1.67 KB
/
entry.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="asset/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="asset/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="asset/favicon/favicon-16x16.png">
<link rel="manifest" href="asset/favicon/site.webmanifest">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="src/css/openlive3d.css">
</head>
<body>
<div class="loadbox" id="loadbox">
<div class="w3-display-middle" style="width:280px">
<img id="loadimg" src="asset/logo.png" style="height:50px"/>
<text class="loading"> OpenLive3D </text>
<div><br/> An <b>Open-Source</b> to connect <b>Camera</b> with <b>3D Model</b>!! <br/></div>
<div><br/>
<a style="text-decoration:none" id="entrylinkdemo"><button class="w3-button w3-green w3-round-large" style="width:240px"><h2> GO TO DEMO </h2></button></a>
<br/></div>
<div><br/>
<a style="text-decoration:none" id="entrylinkcode"><button class="w3-button w3-light-gray w3-round-large" style="width:240px"><h3> GO TO GITHUB </h3></button></a>
<br/></div>
</div>
</div>
<script src="src/js/entry/entry-manager.js"></script>
<script src="src/js/config/config-manager.js"></script>
<script>
let entrylinkdemo = document.getElementById('entrylinkdemo');
entrylinkdemo.href = "/";
let entrylinkcode = document.getElementById('entrylinkcode');
entrylinkcode.href = defaultConfig["ORG_URL"];
</script>
</body>
</html>