-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (55 loc) · 1.91 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chuvas Jampa</title>
<link rel="shortcut icon" type="image/png" href="images/Chuvas Jampa.png"/>
<link rel="stylesheet" href="style/geral.css" />
</head>
<style>
body {
max-width: 500px;
margin: auto;
padding: 0 16px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
h1 {
margin: 0;
text-align: center;
}
body { transition: 2s; }
.fade-in { transition: 2s; opacity: 1; }
.fade-out { opacity: 0; }
</style>
<!--
-- FAZER 4 SLIDES COM UMA VISÃO GERAL DOS AVANÇOS
-- FAZER O RELATÓRIO DESSAS 2 SEMANAS
-- OTIMIZAR DESIGN
-- OTIMIZAR CÓDIGO
-- INSERIR ATUALIZAÇÃO AUTOMÁTICA DO MAPA
-- INSERIR ATUALIZAÇÃO AUTOMÁTICA DOS GRÁFICOS
-->
<body>
<script src="code/loadLottie.ts"></script>
<lottie-player id="ctrAnimacao" src="https://assets3.lottiefiles.com/packages/lf20_x9pEKm.json" background="transparent" speed="1" style="width: 200px; height: 200px; align-self: center;"></lottie-player>
<div id="ctrSucesso" class="fade-out" style="display: none;">
<h1>CHUVAS JAMPA</h1>
<button class="botao" id="ctrMapa">Ver mapa</button>
<button class="botao" id="ctrGraficos">Ver gráficos</button>
<button class="botao" id="ctrSobre">Sobre o projeto</button>
</div>
<!-- Região de mapeamento -->
<div style="display:none">
<a href="map.html">Ver mapa</a>
<a href="graphSettings.html">Ver gráficos</a>
<a href="graph.html">Ver gráficos [Ignorar]</a>
<a href="mapSettings.html">Configurações do mapa [Ignorar]</a>
<a href="about.html">Sobre o projeto</a>
</div>
<script src="code/index.ts"></script>
</body>
</html>