Pokedex
This commit is contained in:
parent
c3f0877911
commit
e4fdaa7654
16
pokedex/index.html
Normal file
16
pokedex/index.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link rel="stylesheet" href="style.css" />
|
||||||
|
<title>Pokedex</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Pokedex</h1>
|
||||||
|
<div class="poke-container" id="poke-container"></div>
|
||||||
|
|
||||||
|
<!-- Design inspired by this Dribbble shot: https://dribbble.com/shots/5611109--Pokemon -->
|
||||||
|
<script src="script.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
64
pokedex/script.js
Normal file
64
pokedex/script.js
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
const poke_container = document.getElementById('poke-container')
|
||||||
|
const pokemon_count = 150
|
||||||
|
const colors = {
|
||||||
|
fire: '#FDDFDF',
|
||||||
|
grass: '#DEFDE0',
|
||||||
|
electric: '#FCF7DE',
|
||||||
|
water: '#DEF3FD',
|
||||||
|
ground: '#f4e7da',
|
||||||
|
rock: '#d5d5d4',
|
||||||
|
fairy: '#fceaff',
|
||||||
|
poison: '#98d7a5',
|
||||||
|
bug: '#f8d5a3',
|
||||||
|
dragon: '#97b3e6',
|
||||||
|
psychic: '#eaeda1',
|
||||||
|
flying: '#F5F5F5',
|
||||||
|
fighting: '#E6E0D4',
|
||||||
|
normal: '#F5F5F5'
|
||||||
|
}
|
||||||
|
|
||||||
|
const main_types = Object.keys(colors)
|
||||||
|
|
||||||
|
const fetchPokemons = async () => {
|
||||||
|
for(let i = 1; i <= pokemon_count; i++) {
|
||||||
|
await getPokemon(i)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const getPokemon = async (id) => {
|
||||||
|
const url = `https://pokeapi.co/api/v2/pokemon/${id}`
|
||||||
|
const res = await fetch(url)
|
||||||
|
const data = await res.json()
|
||||||
|
createPokemonCard(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
const createPokemonCard = (pokemon) => {
|
||||||
|
const pokemonEl = document.createElement('div')
|
||||||
|
pokemonEl.classList.add('pokemon')
|
||||||
|
|
||||||
|
const name = pokemon.name[0].toUpperCase() + pokemon.name.slice(1)
|
||||||
|
const id = pokemon.id.toString().padStart(3, '0')
|
||||||
|
|
||||||
|
const poke_types = pokemon.types.map(type => type.type.name)
|
||||||
|
const type = main_types.find(type => poke_types.indexOf(type) > -1)
|
||||||
|
const color = colors[type]
|
||||||
|
|
||||||
|
pokemonEl.style.backgroundColor = color
|
||||||
|
|
||||||
|
const pokemonInnerHTML = `
|
||||||
|
<div class="img-container">
|
||||||
|
<img src="https://pokeres.bastionbot.org/images/pokemon/${pokemon.id}.png" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="info">
|
||||||
|
<span class="number">#${id}</span>
|
||||||
|
<h3 class="name">${name}</h3>
|
||||||
|
<small class="type">Type: <span>${type}</span> </small>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
|
||||||
|
pokemonEl.innerHTML = pokemonInnerHTML
|
||||||
|
|
||||||
|
poke_container.appendChild(pokemonEl)
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchPokemons()
|
67
pokedex/style.css
Normal file
67
pokedex/style.css
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css?family=Lato:300,400&display=swap');
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #efefbb;
|
||||||
|
background: linear-gradient(to right, #d4d3dd, #efefbb);
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
letter-spacing: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.poke-container {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: space-between;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 1200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon {
|
||||||
|
background-color: #eee;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 3px 15px rgba(100, 100, 100, 0.5);
|
||||||
|
margin: 10px;
|
||||||
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon .img-container {
|
||||||
|
background-color: rgba(255, 255, 255, 0.6);
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon .img-container img {
|
||||||
|
max-width: 90%;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon .info {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon .info .number {
|
||||||
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokemon .info .name {
|
||||||
|
margin: 15px 0 7px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user