-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.html
More file actions
76 lines (69 loc) · 1.79 KB
/
splash.html
File metadata and controls
76 lines (69 loc) · 1.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
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
<!DOCTYPE html>
<html>
<head>
<title>Loading...</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #000a20;
font-family: Arial, sans-serif;
overflow: hidden;
}
.splash-container {
text-align: center;
position: relative;
}
.logo {
width: 80%;
height: 80%;
margin-bottom: 20px;
animation: pulse 2s infinite;
}
.loading-text {
color: #00b2e8;
font-size: 18px;
margin-top: 20px;
letter-spacing: 2px;
}
.loading-bar {
width: 200px;
height: 4px;
background: #00233f;
border-radius: 2px;
margin-top: 20px;
overflow: hidden;
position: relative;
}
.loading-bar::after {
content: '';
position: absolute;
left: -50%;
width: 50%;
height: 100%;
background: #00b2e8;
animation: loading 1.5s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@keyframes loading {
0% { left: -50%; }
100% { left: 100%; }
}
</style>
</head>
<body>
<div class="splash-container">
<img src="https://ghzhost.com/assets/img/logo.png" alt="GHZHost Logo" class="logo">
<div class="loading-bar"></div>
<div class="loading-text">Iniciando...</div>
</div>
</body>
</html>