This repository was archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.html
More file actions
44 lines (44 loc) · 2.79 KB
/
Copy pathloading.html
File metadata and controls
44 lines (44 loc) · 2.79 KB
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{margin:0;image-rendering: pixelated;padding:1em;background-color:#369;text-align:center;background:url("assets/loading/background.png") no-repeat center center fixed;background-size:cover}
#logo{display:inline-block;margin-bottom:1em}
#frame{display:inline-block;position:relative;min-width:531px;padding:3px;background-color:#D4D0C8;border-width:1px;border-style:solid;border-color:#fff gray gray #fff;text-align:left}
#frame:before{content:'';position:absolute;z-index:-1;top:-2px;left:-2px;right:-2px;bottom:-2px;border-width:1px;border-style:solid;border-color:#d4d0c8 #404040 #404040 #d4d0c8}
#titlebar{color:#D4D0C8;background-color:gray;margin-bottom:3px;padding:3px}
#titlebar img,#titlebar span,#boxes img{display:inline-block;vertical-align:middle}
#icon{height:20px;margin-right:2px}
.box{float:right;margin-top:4px;margin-left:2px}
#titlebar,#client-area,#footer{font-family:monospace;font-size:14px;font-weight:700}
#inner-frame{padding-right:1px;padding-bottom:1px;margin-bottom:3px;background-color:#fff}
#test{width:20px;height:20px;background-color:red;border-left:1px solid #404040;border-top:1px solid #404040}
#client-area{border-top:1px solid gray;border-left:1px solid gray;background-color:#D4D0C8;padding-right:1px;padding-bottom:1px}
#preview{display:inline-block;vertical-align:top;width:512px;height:288px;border-left:1px solid #404040;border-top:1px solid #404040}
#scroll{display:inline-block;vertical-align:top;width:15px;height:288px;border-top:1px solid #404040}
#footer{display:inline-block;width:508px;padding:1px 4px;color:#111;max-height:16px;border-top:1px solid gray;border-left:1px solid gray;border-bottom:1px solid #FFF}
#endcap{border-top:1px solid gray;display:inline-block;vertical-align:top;width:14px;height:19px}
</style>
</head>
<body>
<div>
<img id="logo" src="assets/loading/logo.png">
</div>
<div id="frame">
<div id="titlebar">
<img id="icon" src="assets/loading/window.png"><span> Map Preview</span><img class="box" onclick="hide()" src="assets/loading/close.png"><img class="box" src="assets/loading/maxim.png"><img class="box" src="assets/loading/minus.png">
</div>
<div id="inner-frame">
<div id="client-area">
<img id="preview" src="assets/loading/init.png" onerror="err(this)" alt="No image preview available."><img id="scroll" src="assets/loading/scroll.png">
</div>
</div>
<div id="footer">You're headed to<span id="mapname">..?</span></div><img id="endcap" src="assets/loading/endcap.png">
</div>
<script>
function hide(){document.getElementById("frame").style.display="none"};
function err(a){a.src = "assets/loading/err.png"};
function GameDetails(a,b,c,d,e,f){a="assets/mp/"+c+".jpg";document.getElementById("preview").src=a;document.getElementById("mapname").innerHTML=" "+c}
</script>
</body>
</html>