This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
131 lines (121 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/talos-icon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'; img-src * data:;">
<title>TalOS - AI Sandbox</title>
<style>
#actual-loading {
background-color: rgba(0, 0, 0, 0.75);
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url('./public/backgrounds/blackdefault.svg');
color: white;
font-size: 2em;
z-index: 9999;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.spinner {
border: 2px solid #f3f3f3;
border-radius: 50%;
border-top: 2px solid #3498db;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
.loading-gif {
width: 160px;
}
.desktop-box {
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.75);
width: 25vw;
height: 20vw;
border: 2px solid #000000;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.is-loading-letter {
animation: bounce 1s infinite;
display: inline-block;
}
.is-loading-letter:nth-child(1) { animation-delay: 0.1s; }
.is-loading-letter:nth-child(2) { animation-delay: 0.2s; }
.is-loading-letter:nth-child(3) { animation-delay: 0.3s; }
.is-loading-letter:nth-child(4) { animation-delay: 0.4s; }
.is-loading-letter:nth-child(5) { animation-delay: 0.5s; }
.is-loading-letter:nth-child(6) { animation-delay: 0.6s; }
.is-loading-letter:nth-child(7) { animation-delay: 0.7s; }
.is-loading-letter:nth-child(8) { animation-delay: 0.8s; }
.is-loading-letter:nth-child(9) { animation-delay: 0.9s; }
.is-loading-letter:nth-child(10) { animation-delay: 0.10s; }
.is-loading-letter:nth-child(11) { animation-delay: 0.11s; }
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
/* Spinner animation */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add CSS for animation here */
@keyframes flyIn {
from {transform: translateX(-100%);}
to {transform: translateX(0);}
}
.fly-in-text {
animation: flyIn 2s;
}
@keyframes flyOut {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
.fly-out-text {
animation: flyOut 2s;
}
</style>
</head>
<body>
<div id="root">
<div id="actual-loading">
<div class="spinner"></div>
<br/>
<div class="is-loading-text">
<span class="is-loading-letter">L</span>
<span class="is-loading-letter">o</span>
<span class="is-loading-letter">a</span>
<span class="is-loading-letter">d</span>
<span class="is-loading-letter">i</span>
<span class="is-loading-letter">n</span>
<span class="is-loading-letter">g</span>
<span class="is-loading-letter">.</span>
<span class="is-loading-letter">.</span>
<span class="is-loading-letter">.</span>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>