-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
253 lines (253 loc) · 8.29 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CYBER-MOUSE: testing envitoment for rattish-lang</title>
<link rel="stylesheet" href="main.css">
<link href="/docs/5.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="/docs/5.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="core/file.js"></script>
<script src="core/dir.js"></script>
<script src="core/disk.js"></script>
<script src="core/variable.js"></script>
<script src="core/enviroment.js"></script>
<script src="core/command.js"></script>
<script src="core/namespace.js"></script>
<script src="core/interpreter.js"></script>
<script src="main-web-tester.js"></script>
</head>
<body>
<div id="loading-screen" class="active">
<style>
.description-of-logo{
left:1%;
color:#800;
opacity:0;
position:absolute;
top:-140px;
width:100%;
text-align:center;
font-size:10px;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
.logo-hook:hover .description-of-logo.active{opacity:1;}
.logo-hook{
position:absolute;
width:100%;
top:50%;
left:0;
}
.logo-letter{
animation: animationLogoLetter;
animation-duration: 2s;
animation-iteration-count: infinite;
}
.logo-letter:nth-of-type(1){animation-delay: 0.1s;}
.logo-letter:nth-of-type(2){animation-delay: 0.2s;}
.logo-letter:nth-of-type(3){animation-delay: 0.3s;}
.logo-letter:nth-of-type(4){animation-delay: 0.4s;}
.logo-letter:nth-of-type(5){animation-delay: 0.5s;}
.logo-letter:nth-of-type(6){animation-delay: 0.6s;}
.logo-letter:nth-of-type(7){animation-delay: 0.7s;}
.logo-letter:nth-of-type(8){animation-delay: 0.8s;}
.logo-letter:nth-of-type(9){animation-delay: 0.9s;}
.logo{
position:absolute;
left:10%;
width:81%;
text-align:center;
color:#f00;
font-family:Arial;
}
.logo.name{top:-120px;}
.logo.soft{top:-100px;}
.animation-box{
position: relative;
width:100%;
height:100%;
}
.loading-circle-hook{
width:0;
height:0;
position:absolute;
top:50%;
left:50%;
}
.in{position: relative;}
.loading-circle{
position:absolute;
width:100px;
height:100px;
border-radius:100%;
top:-50px;
left:-50px;
animation: circleAnimation;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-duration: 2s;
}
.pure-anchor{
text-decoration:none;
color:#000;
}
#loading-screen{
background:#000;
position:fixed;
top:0;
left:0;
width:100%;
height:0%;
overflow: hidden;
opacity:0;
-webkit-transition: all 400ms ease-in-out;
-moz-transition: all 400ms ease-in-out;
-ms-transition: all 400ms ease-in-out;
-o-transition: all 400ms ease-in-out;
transition: all 400ms ease-in-out;
z-index: 9999;
}
#loading-screen.active{
height:100%;
opacity:1;
}
@keyframes animationLogoLetter{
0%{color:#f00;}
10%{color:#800;}
20%{color:#f00;}
100%{color:#f00;}
}
@keyframes circleAnimationInStop{
0%{transform: rotate(0deg);}
50%{transform: rotate(-180deg);}
100%{transform: rotate(-360deg);}
}
@keyframes circleAnimation{
0%{
border-left:10px solid #f00;
border-right:10px solid #f00;
border-top:10px solid #f00;
border-bottom:10px solid #f00;
border-radius:100%;
transform: rotate(0deg);
}
25%{
border-left:10px solid #f00;
border-right:10px solid #f00;
border-top:10px solid #f00;
border-bottom:8px dashed #fff;
border-radius:50%;
transform: rotate(90deg);
}
50%{
border-top:10px solid #f00;
border-right:10px solid #f00;
border-left:6px dashed #fff;
border-bottom:6px dashed #fff;
border-radius:0%;
transform: rotate(180deg);
}
75%{
border-right:10px solid #f00;
border-left:4px dashed #fff;
border-top:4px dashed #fff;
border-bottom:4px dashed #fff;
border-radius:0%;
transform: rotate(270deg);
}
90%{
border-left:2px dashed #fff;
border-right:2px dashed #fff;
border-top:2px dashed #fff;
border-bottom:2px dashed #fff;
border-radius:0%;
}
100%{
border-left:10px solid #f00;
border-right:10px solid #f00;
border-top:10px solid #f00;
border-bottom:10px solid #f00;
border-radius:100%;
transform: rotate(360deg);
}
}
@keyframes hideLoading{
from {top:0;}
to {top:-100%;}
}
</style>
<div class="animation-box">
<div class="logo-hook">
<div class="in">
<div class="description-of-logo active">CLICK HERE TO VISIT MORE</div>
<div class="logo name">
<a class="pure-anchor homesite" target="_blank" href="http://sarverott.com/">
<span class="logo-letter">S</span>
<span class="logo-letter">A</span>
<span class="logo-letter">R</span>
<span class="logo-letter">V</span>
<span class="logo-letter">E</span>
<span class="logo-letter">R</span>
<span class="logo-letter">O</span>
<span class="logo-letter">T</span>
<span class="logo-letter">T</span>
</a>
</div>
<div class="logo soft">
<a class="pure-anchor homesite" target="_blank" href="http://sarverott.com/">
<span class="logo-letter">S</span>
<span class="logo-letter">O</span>
<span class="logo-letter">F</span>
<span class="logo-letter">T</span>
<span class="logo-letter">W</span>
<span class="logo-letter">A</span>
<span class="logo-letter">R</span>
<span class="logo-letter">E</span>
</a>
</div>
</div>
</div>
<div class="loading-circle-hook">
<div class="in">
<div class="loading-circle"></div>
</div>
</div>
</div>
<script>
function loadingScreen(mode){
switch (mode){
case "show":
document.getElementById("loading-screen").setAttribute("class", "active");
break;
case "hide":
document.getElementById("loading-screen").setAttribute("class", "inactive");
break;
}
}
setTimeout(function(){loadingScreen("hide")},300);
</script>
</div>
<div>
<header>
<h1>cybermouse</h1>
</header>
<aside>
<h4>files</h4>
<div id="filesystem"></div>
</aside>
<main>
<textarea id="ratscript" name="name" rows="8" cols="80"></textarea>
<article id="output"></article>
<section id="keyboard-record"></section>
</main>
<aside>
<h4>DEBUG</h4>
<p id="debug"></p>
</aside>
<footer><a href="https://github.com/Sarverott/cyber-mouse">repo on github</a></footer>
</div>
</body>
</html>