-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.84 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
54
55
<!DOCTYPE html>
<html>
<head>
<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">
<title>makehuman.js</title>
<meta name="copyright" content="Mark-André Hopf <mhopf@mark13.org>, et al." />
<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="style/tx-static.css" />
<link rel="stylesheet" type="text/css" href="style/tx-dark.css" />
<link rel="stylesheet" type="text/css" href="style/tx.css" />
<script>
function run() {
import("./dist/makehuman.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>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'none'"/>
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'none'"/> -->
</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>