6 385
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 6: | Linha 6: | ||
<title>Busca de Imagens por Nome</title> | <title>Busca de Imagens por Nome</title> | ||
<style> | <style> | ||
.input-group { margin-bottom: 1em; position: relative; } | |||
.dropdown { | |||
.input-group { | |||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
display: none; | |||
position: absolute; | position: absolute; | ||
background-color: | background-color: #fff; | ||
z-index: 1000; | z-index: 1000; | ||
max-height: | max-height: 150px; | ||
overflow-y: auto; | overflow-y: auto; | ||
width: 100%; | |||
} | } | ||
.dropdown-item { | .dropdown-item { | ||
padding: | padding: 8px; | ||
cursor: pointer; | cursor: pointer; | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
} | } | ||
.dropdown-item img { | |||
margin-right: 10px; | |||
} | |||
.dropdown-item:hover { | .dropdown-item:hover { | ||
background-color: #f0f0f0; | background-color: #f0f0f0; | ||
} | } | ||
.image-container { | .image-container { | ||
display: flex; | display: flex; | ||
flex- | flex-direction: column; | ||
align-items: center; | |||
justify-content: center; | |||
} | |||
.image-item { | |||
margin-bottom: 1em; | |||
text-align: center; | |||
} | } | ||
.image-item img { | .image-item img { | ||
display: block; | |||
margin: 0 auto; | |||
} | } | ||
Linha 74: | Linha 47: | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
justify-content: center; | |||
margin-top: 1em; | |||
} | } | ||
.variation-item { | .variation-item { | ||
width: 35%; | |||
box-sizing: border-box; | |||
margin: 5px; | |||
text-align: center; | text-align: center; | ||
border: 1px solid ; | |||
padding: 10px; | |||
} | } | ||
.variation- | .variation-item img { | ||
display: block; | |||
margin: 0 auto 10px; | |||
} | } | ||
.swap-button { | .swap-button { | ||
margin-top: 10px; | |||
cursor: pointer; | cursor: pointer; | ||
width: 15px; | |||
height: 15px; | |||
background: url('https://wiki.pokexgames.com/images/f/fb/SwapButtonAddons.png') no-repeat center; | |||
background-size: contain; | |||
display: block; | |||
margin: 0 auto; | margin: 0 auto; | ||
} | } | ||
</style> | </style> | ||
Linha 115: | Linha 90: | ||
<script> | <script> | ||
// | // Função para gerar o link da imagem da Wiki | ||
function generateWikiImageUrl(imageName) { | |||
return `https://wiki.pokexgames.com/index.php/Special:FilePath/${imageName}.png`; | |||
} | |||
// Lista de imagens e variações | |||
const imageList = { | const imageList = { | ||
Squirtle: { | Squirtle: { | ||
imageUrl: | imageUrl: generateWikiImageUrl('007-Squirtle'), // URL dinâmica da imagem | ||
variations: [ | variations: [ | ||
{ | { | ||
description: "Squirtle usando óculos", | description: "Squirtle usando óculos", | ||
descriptionIMG: | descriptionIMG: generateWikiImageUrl('Squirtle_Glasses'), // URL da variação | ||
additionalImages: [ | additionalImages: [ | ||
{ url: | { url: generateWikiImageUrl('squirtle1'), width: 100 }, | ||
{ url: | { url: generateWikiImageUrl('squirtle2'), width: 120 } | ||
], | ], | ||
obtain: { url: "https://example.com/obter-squirtle", text: "Como obter" } | obtain: { url: "https://example.com/obter-squirtle", text: "Como obter" } | ||
Linha 132: | Linha 112: | ||
}, | }, | ||
Charmander: { | Charmander: { | ||
imageUrl: | imageUrl: generateWikiImageUrl('004-Charmander'), // URL dinâmica da imagem | ||
variations: [ | variations: [ | ||
{ | { | ||
description: "Charmander brilhante", | description: "Charmander brilhante", | ||
descriptionIMG: | descriptionIMG: generateWikiImageUrl('charmander-shiny'), // URL da variação | ||
additionalImages: [ | additionalImages: [ | ||
{ url: | { url: generateWikiImageUrl('charmander1'), width: 100 }, | ||
{ url: | { url: generateWikiImageUrl('charmander2'), width: 120 } | ||
], | ], | ||
obtain: { url: "https://example.com/obter-charmander", text: "Como obter" } | obtain: { url: "https://example.com/obter-charmander", text: "Como obter" } | ||
Linha 200: | Linha 180: | ||
imagesHtml += ` | imagesHtml += ` | ||
<div class="variation-item"> | <div class="variation-item"> | ||
<img src="${variation.additionalImages[0].url}" alt="Variation Image" class="variation-image" data-variation-index="${index}" style="width: ${variation.additionalImages[0].width}px;"> | |||
<div class="swap-button" data-variation-index="${index}"></div><br> | |||
<div class="image-info"> | <div class="image-info"> | ||
<img src="${variation.descriptionIMG}" alt="Description Image" style="margin-right: 5px; display: inline-block;"> | <img src="${variation.descriptionIMG}" alt="Description Image" style="margin-right: 5px; display: inline-block;"> <!-- Exibe a imagem antes da descrição --> | ||
<br>${variation.description}<br> | <br> ${variation.description} <br> <!-- Descrição após a imagem --> | ||
<b>Como Obter</b>: <a href="${variation.obtain.url}" target="_blank | <b>Como Obter</b>: <a href="${variation.obtain.url}" target="_blank">${variation.obtain.text}</a> | ||
</div> | </div> | ||
</div> | </div> | ||
Linha 216: | Linha 196: | ||
imageContainer.classList.remove('hidden'); | imageContainer.classList.remove('hidden'); | ||
// Alternar imagens ao clicar no botão de troca | |||
const swapButtons = document.querySelectorAll('.swap-button'); | const swapButtons = document.querySelectorAll('.swap-button'); | ||
Linha 225: | Linha 206: | ||
button.addEventListener('click', () => { | button.addEventListener('click', () => { | ||
currentImageIndex = (currentImageIndex + 1) % variation.additionalImages.length; | currentImageIndex = (currentImageIndex + 1) % variation.additionalImages.length; | ||
const variationImage = button.previousElementSibling; | const variationImage = button.previousElementSibling; // Atualiza a imagem da variação | ||
variationImage.src = variation.additionalImages[currentImageIndex].url; | variationImage.src = variation.additionalImages[currentImageIndex].url; | ||
variationImage.style.width = `${variation.additionalImages[currentImageIndex].width}px`; | |||
}); | }); | ||
}); | }); |