-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (105 loc) · 3.7 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
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./src/style/style.css">
<link rel="shortcut icon" href="src/img/pokemon icon.ico" type="image/x-icon">
</head>
<body background="src/img/background_img.jpg">
<section class="modalChampion hidden" data-js="modal">
<div class="modalContainer">
<div class="congratulations">
<h3 class="tittle-congratulations">
Congratulations! Ash Ketchum Has Finally Become The World's Greatest Pokémon Trainer
</h3>
</div>
<span class="modal-close">X</span>
<div data-js="video" class="video-container">
<video data-js="video-ash" src="src/video/world champion.mp4" autoplay loop></video>
</div>
</div>
</section>
<main>
<section class="section-search">
<div>
<h1 class="title-pokedex">POKÉDEX</h1>
</div>
<div>
<button data-js="ash-champion" class="ash-champion">
Ash Champion
<img src="src/img/taça.png" alt="">
</button>
</div>
<h2 data-js="error">what pokemon do you want to search?</h2>
<div>
<form>
<input type="text" name="pokeName" placeholder="Ex: pikachu" autofocus>
<div class="buttons-form">
<button>Search</button>
<button data-js="historico" class="historico">Historic</button>
</div>
</form>
</div>
</section>
<section class="main-content">
<div class="div-content-pikachu">
<img data-js="pikachu-gif" class="pikachu-gif" src="src/img/poke gif 1.gif" height="370px" alt="pikachu">
</div>
<div data-js="conteiner-Main" class="poke-container hidden">
<h1 data-js="pokeName">pokemon name</h1>
<div class="inital-info-container">
<div class="img-container">
<img data-js="poke-sprite" class="imagem-principal" src="https://via.placeholder.com/300" alt="">
</div>
<div class="pokeInfo-container">
<div class="description-poke">
<p data-js="Description">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolor, officiis.</p>
</div>
<div class="otherInfo">
<div>
<span class="otherInfor-title">Height</span>
<span data-js="Height"></span>
</div>
<div>
<span class="otherInfor-title">Category</span>
<span data-js="Category"></span>
</div>
<div>
<span class="otherInfor-title">Weight</span>
<span data-js="Weight"></span>
</div>
<div>
<span class="otherInfor-title">Abilities</span>
<span data-js="Abilities"></span>
</div>
</div>
</div>
</div>
<div class="tipo-fraqueza">
<div>
<h3 class="otherInfor-title">Evolution :</h3>
<h4 data-js="evolution">agua</h4>
</div>
<div>
<h3 class="otherInfor-title">Type :</h3>
<h4 data-js="type-poke">agua</h4>
</div>
</div>
</div>
</section>
<section data-js="container-lista" class="pokemons-team hidden">
<h5>latest searches</h5>
<ul data-js="lista-poke">
</ul>
</section>
</main>
<!-- <section class="videoModal">
</section> -->
<script src="./src/script/modal.js"></script>
<script src="./src/script/getPokeInfo.js"></script>
<script src="./src/script/domEvents.js"></script>
</body>
</html>