Skip to content
Snippets Groups Projects
Commit 8167e35d authored by marmart0's avatar marmart0
Browse files

Subida de todos los archivos de la practica

parents
Branches
No related tags found
No related merge requests found
Pipeline #13269 failed
This diff is collapsed.
/*
* Autor: Mario Martín González
* Asignatura: Diseño y Evaluación de Sistemas Interactivos (DESI)
*/
#squareBotones {
position: fixed;
width: 33%;
height: 100vh;
left: 0;
background-color: #333;
}
#squareGrafico {
width: 67%;
height: 90vh;
position: fixed;
right: 0;
bottom: 0;
background-color: #05050A;
}
#squareTitulo {
width: 100%;
height: 10vh;
position: fixed;
top: 0;
left: 0;
background-color: #333;
}
#ventanaInfo {
position: fixed;
display: none;
background-color: #353644;
border: 1px solid #444;
border-radius: 5px;
color: white;
padding: 10px;
font-family: "Times New Roman", serif;
font-size: 12px;
z-index: 1000;
pointer-events: none;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v7.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="estilo.css">
<style>
</style>
</head>
<body>
<div id="fondo">
<div id="squareBotones"></div>
<div id="squareTitulo"></div>
<div id="squareGrafico"></div>
<div id="ventanaInfo"></div>
<script>
let visibilidad = [
{nombre: 'Rocoso', estado: true},
{nombre: 'Super Tierra', estado: true},
{nombre: 'Neptuniano', estado: true},
{nombre: 'Planeta Gaseoso', estado: true}
]
insertaTitulo()
insertaGrafico(visibilidad)
insertaBotones(visibilidad)
</script>
</div>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment