-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (75 loc) · 2.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>zdkrimson</title>
<link rel="stylesheet" href="index.css">
<script src=index.js></script>
</head>
<body>
<div class=windowfade></div>
<div class=loading-screen id=loading-screen>
<svg class="spinner" id=loading viewBox="0 0 16 16" width="29" height="29" xmlns="http://www.w3.org/2000/svg">
<style>
path {
animation: spinner 3s ease-in-out infinite;
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
fill: none;
stroke-width: 2;
stroke-miterlimit: 10;
stroke-linecap: round;
transform-origin: 50% 50%;
stroke: #e7e9ec;
}
@keyframes spinner {
0% {
stroke-dasharray: 0, 200;
stroke-dashoffset: 0;
transform: rotate(0deg);
}
100% {
stroke-dasharray: 130, 200;
stroke-dashoffset: -43.9;
transform: rotate(-360deg);
}
}
</style>
<path d="M8 1A1 1 0 008 15 1 1 0 008 1"></path>
</svg>
<p>Loading User Data...</p>
<p class=loading-fine-print>This process takes 5 seconds, if no data loaded, restart the launcher!</p>
</div>
<div id=settings class=settings>
<iframe allow-scripts=true allow-same-origin=true allow-transparency=true class=windowiframe src='settings.html' title='zdkrimson Settings'></iframe>
</div>
<div id=help class=help>
<iframe allow-scripts=true allow-same-origin=true allow-transparency=true class=windowiframe src='help.html' title='zdkrimson Help'></iframe>
</div>
<div id=instances class=instances>
<iframe allow-scripts=true allow-same-origin=true allow-transparency=true class=windowiframe src='instances.html' title='zdkrimson Settings'></iframe>
</div>
<div class=main>
<div class=homescrn>
<button onclick='help("show")' class=helpbtn>
<img width=30px src='assets/icons/questionmark.svg'>
</button>
<button onclick='settings("show")' class=settingsbtn>
<img width=30px src='assets/icons/settings.svg'>
</button>
<div class=logocenter>
<img class=zdklogo width=100 src='assets/logo/image/white.png'>
<p class=logotitle>zdkrimson</p>
<p>A Minecraft Launcher.</p>
</div>
<div class=homeactions>
<button onclick='quicklaunch()'>Play</button>
<button onclick='instances("show")'>Instances</button>
</div>
<p id=instancename class=currentinstance>Current Instance: Loading...</p>
</div>
<div>
<!-- <p class=love>Made with <3</p> -->
<p id=lastuser class=username>Logged in as: Loading...</p>
</div>
</body>
</html>