-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload.html
77 lines (74 loc) · 1.76 KB
/
load.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 lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap" rel="stylesheet">
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
window.location.href = "http://127.0.0.1:8080/main.html";
})
</script>
<meta charset="UTF-8">
<title>Cargando</title>
<style type="text/css">
.lds-circle {
display: inline-block;
transform: translateZ(1px);
}
*{
font-family: 'Nunito Sans', sans-serif;
color: #fff;
font-weight: 800;
}
body{
background-color: #454d66;
}
.lds-text {
display: box;
align-items: center;
}
.lds-group{
background-color: rgba(61, 37, 170, 0.527);
width: 200px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
border-radius: 10px;
border : 3px solid #f6a361;
transform: translate(-50%, -50%);
}
.lds-dual-ring {
margin-left: 57px;
display: inline-block;
width: 80px;
height: 80px;
}
.lds-dual-ring:after {
content: " ";
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid #fff;
border-color: #fff transparent #fff transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body class="main">
<div class="lds-group">
<div class="lds-dual-ring"></div><p class="lds-text"><center>Cargando...</center></p>
</div>
</body>
</html>