-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.dev.html
50 lines (47 loc) · 1.6 KB
/
index.dev.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>
<head>
<title>makehuman.js (dev)</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,500,600&subset=latin" />
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400&subset=latin" />
<link rel="stylesheet" type="text/css" href="node_modules/toad.js/style/tx-static.css" />
<link rel="stylesheet" type="text/css" href="node_modules/toad.js/style/tx-dark.css" />
<link rel="stylesheet" type="text/css" href="node_modules/toad.js/style/tx.css" />
<script>
function run() {
import("./index.dev.js")
}
</script>
<style>
@keyframes fade {
from { color: var(--tx-gray-700) }
50% { color: var(--tx-gray-500) }
to { color: var(--tx-gray-700) }
}
.connecting {
animation-timing-function: ease;
animation:fade 2000ms infinite;
}
</style>
</head>
<body onload="run()">
<div style="
display: flex;
position: absolute;
left: 0;
top: 0;
margin: 0;
background-color: #444;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;">
makehuman.js is loading...
</div>
</body>
</html>