-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1008 Bytes
/
index.html
File metadata and controls
47 lines (41 loc) · 1008 Bytes
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
<html>
<head>
<meta name='viewport' content="user-scalable=no">
<title>Sol</title>
<style>
* {
padding: 0px;
margin: 0px;
background-color: #f6f6e7;
position: absolute;
}
#loading .loading {
position: absolute;
left: 50%;
top: 50%;
width: 100px;
height: 100px;
margin-left: -50px;
margin-top: -50px;
}
#loadingText {
position: absolute;
width: 400px;
height: 100px;
left: 50%;
top: 25%;
margin-left: -200px;
}
</style>
</head>
<body>
<div id='preload' style='display: none;' preload></div>
<div id='loading' style='display: none;'>
<img id='loadingText' src='graphics/loading.png'>
<img class='loading' id='solBase' src='graphics/solBase.png'>
<img class='loading' id='sol' src='graphics/solSingle.png'>
</div>
<canvas id='canvas' width='1920px' height='1080px' moz-opaque screencanvas='true'></canvas>
</body>
<script type='text/javascript' src='scripts/load.js'></script>
</html>