This repository was archived by the owner on May 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 1.95 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 1.95 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "rd7l3sh1hn");
</script>
<title>Cargando Start></title>
<style>
/* Estilos para centrar el spinner */
body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
/* Estilos del spinner */
.spinner {
border: 8px solid #f3f3f3; /* Gris claro */
border-top: 8px solid #3498db; /* Azul */
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
/* Animación del spinner */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Estilo del mensaje */
.message {
position: absolute;
top: 70%;
text-align: center;
font-size: 1.2em;
color: #333;
}
</style>
</head>
<body>
<!-- Spinner -->
<div class="spinner"></div>
<!-- Mensaje de redirección -->
<div class="message"></div>
<!-- Script para redireccionar después de 3 segundos -->
<script>
setTimeout(function() {
window.location.href = "start.html"; // Cambia esta URL por la página de destino
}, 1); // A saber que 1000 milisegundos = 1 segundos
</script>
</body>
</html>