-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpesquisa.html
148 lines (121 loc) · 4.97 KB
/
pesquisa.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pokedex</title>
<link rel="stylesheet" href="./Estilos/teste.css">
<link rel="shortcut icon" type="image/jpg" href="Favicon.png" />
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/low-batt" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/low-batt" rel="stylesheet">
</head>
<body>
<header>
<nav class="Navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pesquisa.html">Pesquisar</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Mapa PokeCenters</a>
<ul class="dropdown-content">
<li><a href="MapaPokedex.html" target="_blank">Tóquio</a></li>
<li><a href="MapaPokedex_2.html" target="_blank">Taipei</a></li>
<li><a href="MapaPokedex_3.html" target="_blank">Singapura</a></li>
</ul>
</li>
<li style="float:right"><a href="Forms.html">Bug Report</a></li>
</ul>
</nav>
</header>
<div class="div_center">
<h1 id = "poke_nome" class = "pesq_poke"></h1>
<form id="search_pokemon" class="box_align" autocomplete="off">
<input id="pokemon_pesquisado" placeholder="Nome do Pokémon ou ID" class="bordername"></input>
<ul class="sugestoes"></ul>
</form>
<div class="img_poke">
<h2></h2>
<img id="pokemon_imagem" src="" alt="Imagem do Pokémon"></img>
</div>
<br>
<h2 class="box_alignInfo">INFORMACOES DO POKEMON</h2>
<br>
<div id="poke_dados">
<h2 class="box_align2"> DADOS TECNICOS </h2>
<div class="pokemon_stats">
<table>
<tr>
<th class="stats_name">HP</th>
<td>
<progress class="stats_bar" id="hp_pokemon" max="255"></progress>
</td>
<td class="stats_value" id="hp_num"></td>
</tr>
<tr>
<th class="stats_name">Ataque</th>
<td>
<progress class="stats_bar" id="ataque_pokemon" max="255"></progress>
</td>
<td class="stats_value" id="ataque_num"></td>
</tr>
<tr>
<th class="stats_name">Defesa</th>
<td>
<progress class="stats_bar" id="defesa_pokemon" max="255"></progress>
</td>
<td class="stats_value" id="defesa_num"></td>
</tr>
<tr>
<th class="stats_name">Ataque Especial</th>
<td>
<progress class="stats_bar" id="ataque_esp" max="255"></progress>
</td>
<td class="stats_value" id="ataque_esp_num"></td>
</tr>
<tr>
<th class="stats_name">Defesa Especial</th>
<td>
<progress class="stats_bar" id="defesa_esp" max="255"></progress>
</td>
<td class="stats_value" id="defesa_esp_num"></td>
</tr>
<tr>
<th class="stats_name">Velocidade</th>
<td>
<progress class="stats_bar" id="velocidade" max="255"></progress>
</td>
<td class="stats_value" id="velocidade_num"></td>
</tr>
</table>
</div>
<div id="pre_evolucao">
<h4 class = "EspacoAlinha" >PRÉ-EVOLUÇÃO</h4>
<p class="bordaCampoNome2"></p>
</div>
<div id="prox_evolucao">
<h4 class = "EspacoAlinha">PRÓXIMA EVOLUÇÃO</h4>
<p class="bordaCampoNome3"></p>
</div>
</div>
<br>
<h2 class="box_align2" > DESCRICAO </h2>
<p class = "bordaDesc"id="poke_descricao"></p>
<div class="iframe-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/-PlAg8R9TG4?si=4zQ8WCYe5KgkfWzG"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</body>
<script src="./Extras/jquery-3.7.1.min.js"></script>
<script src="./Extras/utils.js"></script>
<script src="./Extras/pokedex_json.js"></script>
<script src="./Extras/pesquisa.js"></script>
<script src="./API/Pokedex.js"></script>
<script src="./API/Pokemon.js"></script>
<script src="./Scripts/pesquisar_pokemon.js"></script>
<script src="./Scripts/teste_pokemon.js"></script>
</html>