-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathrender.html
44 lines (44 loc) · 1.08 KB
/
render.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<style>
body {
margin: 0;
}
#progress {
background: rgb(37, 106, 168);
height: 5px;
position: fixed;
top: 0;
left: 0;
/* transition: 500ms cubic-bezier(0.165, 0.84, 0.44, 1); */
}
#status {
color: #fff;
width: 100%;
top: 10px;
font-size: 16px;
position: fixed;
text-align: center;
font-family: sans-serif;
}
#config {
position: fixed;
right: 10px;
top: 10px;
z-index: 1000;
width: 300px;
}
</style>
<div id="viewport"></div>
<div id="progress"></div>
<div id="status">PREPARING</div>
<div id="config"></div>
<script src="dist/render-bundle.js"></script>
</body>
</html>