-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (88 loc) · 4.03 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Transparentes</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<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=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<style>
/* Estilo del texto animado */
.typewriter span {
display: inline-block;
border-right: 2px solid #FF4609;
animation: blink 0.7s step-end infinite;
}
@keyframes blink {
from {
border-right-color: #FF4609;
}
to {
border-right-color: transparent;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="megafono" role="banner" aria-label="Decoración con megáfonos activistas">
<img src="img/decoracion-1.png" alt="" role="presentation" class="img-1">
<img src="img/decoracio-2.png" alt="" role="presentation" class="img-2">
<h1>
<img src="img/logo-transparentes.png" alt="Logotipo de Transparentes">
</h1>
</header>
<!-- Main Content -->
<main class="container text-center" role="main">
<section class="row">
<div class="col-12">
<h2 class="typewriter">
<span id="animated-text"></span>
</h2>
<p>Pronto podrás monitorear leyes, impulsar cambios ¡y tomar el mando!</p>
<div class="cta">
<p>¿Quieres saber más?</p>
<a href="https://mailchi.mp/71bfb807b29c/boletin-transparentes" class="btn-transparentes btn btn-primary">Suscríbete aquí</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer" role="contentinfo">
<img src="img/footer.png" alt="Logotipo de Ciudadanía Inteligente y Chile Transparentes">
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<!-- Animación de texto -->
<script>
const textElement = document.getElementById('animated-text');
const text = 'Cargando la democracia ...';
let index = 0;
let deleting = false;
function typeText() {
if (!deleting) {
// Escribe el texto carácter por carácter
textElement.textContent = text.substring(0, index);
index++;
if (index > text.length) {
deleting = true; // Empieza a borrar después de escribir todo el texto
setTimeout(typeText, 2000); // Pausa antes de borrar
return;
}
} else {
// Borra el texto carácter por carácter
textElement.textContent = text.substring(0, index);
index--;
if (index < 0) {
deleting = false; // Vuelve a escribir después de borrar todo
}
}
setTimeout(typeText, deleting ? 50 : 100); // Ajusta la velocidad para escribir y borrar
}
typeText(); // Inicia la animación
</script>
</body></html>