-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_en.html
213 lines (211 loc) · 5.65 KB
/
index_en.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html>
<head>
<style>
html, body {background:#66CC66; text-align: center;}
.vc { top: 0; bottom:0; margin-top:auto; margin-bottom:auto; }
.hc { left:0; right:0; margin-left:auto; margin-right:auto; }
.ButtonEffect {
background: none;
border: 0;
box-sizing: border-box;
color: #8A2387;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
font-size: 18px;
letter-spacing: 1.5px;
line-height: 90px;
outline: none;
overflow: hidden;
padding: 0px 0 0;
position: absolute;
text-transform: uppercase;
transition: all 0.2s ease-in;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
left:50%;
top:10%;
}
.ButtonEffect::after {
background-color: pink;
content: '';
display: block;
height: 1px;
left: 0;
position: absolute;
transform-origin: center left;
transition: all 0.2s ease-in;
width: 141.4214px;
z-index: -1;
}
.ButtonEffect::after {
bottom: 0;
transform: rotate(0deg);
width:0%;
height:100%;
}
.ButtonEffect:hover {
color: #8A2387;
}
.ButtonEffect:hover::after {
height: 100%;
width: 100%;
}
.SelectedButtonEffect {
background: none;
border: 0;
box-sizing: border-box;
color: #8A2387;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
font-size: 18px;
letter-spacing: 1.5px;
line-height: 90px;
outline: none;
overflow: hidden;
padding: 0px 0 0;
position: absolute;
text-transform: uppercase;
transition: all 0.2s ease-in;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
left:50%;
top:10%;
}
.SelectedButtonEffect::after {
background-color: skyblue;
content: '';
display: block;
height: 1px;
left: 0;
position: absolute;
transform-origin: center left;
transition: all 0.2s ease-in;
width: 141.4214px;
z-index: -1;
}
.SelectedButtonEffect::after {
bottom: 0;
transform: rotate(0deg);
width:0%;
height:100%;
}
.SelectedButtonEffect:hover {
color: #8A2387;
}
.SelectedButtonEffect:hover::after {
height: 100%;
width: 100%;
}
.mdl-navigation {
position: relative;
text-align: center;
margin: 0;
min-height: 100vh;
padding: 0;
}
button {
border: 0;
box-sizing: border-box;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
font-size: 18px;
letter-spacing: 1.5px;
line-height: 90px;
outline: none;
overflow: hidden;
padding: 0px 0 0;
position: absolute;
text-transform: uppercase;
transition: all 0.2s ease-in;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
left:50%;
top:10%;
}
</style>
<title>soshimee server website</title>
<!--MDL 시작-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<!--MDL 끝-->
<!--JQuery 시작-->
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<!--Jquery 끝-->
<!--Script 시작-->
<script>
var MainDrawer = document.getElementById('MainDrawer');
function SoshimeeServerInfo() {
setTimeout(() => {
location.href="./SoshimeeServerInfo_en.html?Drawer=opened";
}, 250);
}
function TheSoshimeeServer() {
setTimeout(() => {
location.href="./PromotionVideo_en.html?Drawer=opened";
}, 250)
}
function WebMain() {
setTimeout(() => {
location.href="./index_en.html?Drawer=opened";
}, 250)
}
function ToggleDrawer() {
MainDrawer.classList.toggle('is-visible');
}
</script>
<!--Script 끝-->
<!--Loading 시작-->
<script>
$(window).load(function() {
$('#loading').hide();
});
</script>
<!--Loading 끝-->
</head>
<body id="body">
<div class="mdl-layout mdl-js-layout">
<div id="MainDrawer" class="mdl-layout__drawer">
<span class="mdl-layout-title">메뉴</span>
<nav class="mdl-navigation">
<button class="SelectedButtonEffect mdl-button" style="text-align: right;">
Main Menu
</button>
<button onclick="SoshimeeServerInfo()" class="ButtonEffect mdl-button mdl-js-button mdl-js-ripple-effect" style="text-align: right;">
Server Info
</button>
<button onclick="TheSoshimeeServer()" class="ButtonEffect mdl-button mdl-js-button mdl-js-ripple-effect" style="text-align: right;">
Server Intro
</button>
<button onclick="" class="ButtonEffect mdl-button mdl-js-button mdl-js-ripple-effect">
Close
</button>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<img src="./Logo.png" width="500">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" style="width: 100%; height: 50px;" onclick="SoshimeeServerInfo();">
Server Info
</button>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" style="width: 100%; height: 50px;" onclick="location='http://soshimee.zz.am:8123/'">
Server Map
</button>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" style="width: 100%; height: 50px;" onclick="TheSoshimeeServer();">
Server Intro
</button>
</div>
</main>
</div>
<main class="mdl-layout__content">
</main>
<br>
</body>
</html>