90 lines
2.6 KiB
HTML
Executable file
90 lines
2.6 KiB
HTML
Executable file
+<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Demografía y Sociedad</title>
|
|
<link rel="stylesheet" href="popl-up.css">
|
|
|
|
<!-- Fuentes -->
|
|
<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=Fira+Code:wght@400;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Librerías necesarias -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.7.0/d3.min.js"></script>
|
|
<script src="https://unpkg.com/3d-force-graph"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navegación -->
|
|
<nav>
|
|
<ul class="nav-links">
|
|
<li><a href="popl-up.html" class="popl-up">Demografía y Sociedad</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Contenedor principal -->
|
|
<main>
|
|
<div id="poplUpContainer" style="position: absolute; width: 100%; height: 100%; z-index: 0;"></div>
|
|
|
|
<!-- Fondo animado -->
|
|
<div class="background">
|
|
<img src="/images/flujos3.jpg">
|
|
<img src="/images/flujos3.jpg">
|
|
<img src="/images/flujos3.jpg">
|
|
<img src="/images/flujos3.jpg">
|
|
<img src="/images/flujos3.jpg">
|
|
</div>
|
|
|
|
<script>
|
|
setTimeout(() => {
|
|
const fondo = document.querySelector('.background');
|
|
fondo.classList.add('fade-out');
|
|
fondo.style.pointerEvents = 'none';
|
|
}, 1000);
|
|
</script>
|
|
</main>
|
|
|
|
<!-- Barra lateral de filtros -->
|
|
<div id="sidebar">
|
|
<h2>Parámetros</h2>
|
|
<form id="paramForm">
|
|
<label for="fecha_inicio">Fecha de inicio:</label>
|
|
<input type="date" id="fecha_inicio" name="fecha_inicio">
|
|
|
|
<label for="fecha_fin">Fecha de fin:</label>
|
|
<input type="date" id="fecha_fin" name="fecha_fin">
|
|
|
|
<label for="nodos">Nodos:</label>
|
|
<input type="number" id="nodos" name="nodos" value="100">
|
|
|
|
<label for="complejidad">Complejidad:</label>
|
|
<input type="range" id="complejidad" name="complejidad" min="1" max="40" value="20">
|
|
|
|
<label for="param1">Búsqueda por palabra:</label>
|
|
<input type="text" id="param1" name="param1">
|
|
|
|
<label for="param2">Búsqueda por temática personalizada:</label>
|
|
<input type="text" id="param2" name="param2">
|
|
|
|
<input type="submit" value="Aplicar">
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Botón para colapsar la barra -->
|
|
<button id="sidebarToggle">Toggle Sidebar</button>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<p>
|
|
<a href="#">GitHub</a> |
|
|
<a href="#">Telegram</a> |
|
|
<a href="#">Email</a> |
|
|
<a href="#">Web de Tor</a>
|
|
</p>
|
|
</footer>
|
|
|
|
<!-- Script principal -->
|
|
<script src="output_popl_up_pruebas.js"></script>
|
|
</body>
|
|
</html>
|