-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (95 loc) · 4.9 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
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Bestiário H&M</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/home.css"/>
<script src="./scripts/home/loadingChecker.js" defer></script>
<script src="./scripts/home/home.js" type="module" defer></script>
<script src="./scripts/home/filter.js" type="module" defer></script>
</head>
<body>
<div id="slow-loading-advert" hidden>
<div>
<button id="close-btn">X</button>
<p>Ops, parece que o carregamento está está levando um pouquinho mais de tempo do que o normal :(</p>
<p>Infelizmente, nosso servidor é gratuito e às vezes pode ficar um pouco lento</p>
<p>Mas não se preocupe, em breve a página estará carregada :)</p>
<br>
<p>Enquanto isso, considere conferir ou ajudar no nosso projeto Heroes and Monsters</p>
<br>
<section>
<form action="https://linktr.ee/Heroes_and_Monsters" method="post" target="_blank">
<input type="image" src="./img/linktree logo.webp" name="submit" alt="Linktree Heroes and Monsters" />
</form>
<form action="https://pagseguro.uol.com.br/checkout/v2/donation.html" method="post" target="_blank">
<input type="hidden" name="currency" value="BRL" />
<input type="hidden" name="receiverEmail" value="jgss.gabriel.sousa@gmail.com" />
<input type="hidden" name="iot" value="button" />
<input type="image" src="https://stc.pagseguro.uol.com.br/public/img/botoes/doacoes/94x52-doar-assina.gif" name="submit" alt="Pague com PagSeguro - é rápido, grátis e seguro!" />
</form>
</section>
</div>
</div>
<main>
<h1>Bestiário - Heroes & Monsters</h1>
<div id="filters">
<div class="filter">
<label for="filter-by-type" >Filtrar por Tipo:</label>
<select id="filter-by-type">
<option value="all">Mostrar Todos</option>
<option value="type-aberracao">Aberração</option>
<option value="type-animal">Animal</option>
<option value="type-besta_magica">Besta Mágica</option>
<option value="type-celestial">Celestial</option>
<option value="type-corruptor">Corruptor</option>
<option value="type-constructo">Constructo</option>
<option value="type-dragao">Dragão</option>
<option value="type-elemental">Elemental</option>
<option value="type-fada">Fada</option>
<option value="type-gigante">Gigante</option>
<option value="type-gosma">Gosma</option>
<option value="type-humanoide">Humanoide</option>
<option value="type-humanoide_monstruoso">Humanoide Monstruoso</option>
<option value="type-inseto">Inseto</option>
<option value="type-morto-vivo">Morto-Vivo</option>
<option value="type-monstruosidade">Monstruosidade</option>
<option value="type-planta">Planta</option>
</select>
</div>
<div class="filter">
<label for="filter-by-source" >Filtrar por Livro Fonte:</label>
<select id="filter-by-source">
<option value="all">Mostrar Todos</option>
<option value="bestiario">Bestiário Padrão</option>
<option value="pota">Princes of the Apocalypse</option>
</select>
</div>
<div class="filter">
<label>Filtrar por Nível de Dificuldade:</label>
<div class="nd-range">
<p>Mín:</p>
<input type="range" min="0" max="32" value="0" class="slider" id="minNDRange">
<p id="minNDRangeValue">1/8</p>
</div>
<div class="nd-range">
<p>Máx:</p>
<input type="range" min="0" max="32" value="32" class="slider" id="maxNDRange">
<p id="maxNDRangeValue">30</p>
</div>
</div>
<div class="filter">
<label for="filter-by-name">Buscar por Nome:</label>
<input type="text" id="filter-by-name">
</div>
</div>
<ul data-js="bestiario" class="bestiario"></ul>
<img src="img/spinner.gif" alt="Loading..." id="loading" class="loading">
</main>
<form class="view-monster" action="monster.html">
<input id="form-value" name="id" value=""/>
</form>
</body>
</html>