5 667
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 1: | Linha 1: | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
<html lang="pt-BR"> | <html lang="pt-BR"> | ||
<head> | <head> | ||
<meta charset="UTF-8"> | <meta charset="UTF-8"> | ||
Linha 6: | Linha 7: | ||
<title>Seleção e Exibição de Imagens</title> | <title>Seleção e Exibição de Imagens</title> | ||
<style> | <style> | ||
.d-flex { | .d-flex { | ||
display: flex; | display: flex; | ||
Linha 33: | Linha 33: | ||
} | } | ||
.image-container img { | |||
object-fit: cover; /* Mantém a proporção da imagem, cortando se necessário */ | |||
margin-bottom: 5px; | |||
} | |||
.image-info { | .image-info { | ||
Linha 83: | Linha 83: | ||
min-width: 340px; | min-width: 340px; | ||
min-height: 270px; | min-height: 270px; | ||
} | |||
.input-group { | .input-group { | ||
Linha 115: | Linha 115: | ||
/* Inclui o padding e a borda na largura total */ | /* Inclui o padding e a borda na largura total */ | ||
} | } | ||
.input-group input[type="text"] { | .input-group input[type="text"] { | ||
Linha 147: | Linha 148: | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
} | } | ||
Linha 154: | Linha 155: | ||
padding: 0; | padding: 0; | ||
width: auto; | width: auto; | ||
/* Ajusta o tamanho da checkbox conforme necessário */ | |||
height: auto; | height: auto; | ||
/* Ajusta o tamanho da checkbox conforme necessário */ | |||
/* Alinha verticalmente a checkbox com o texto */ | |||
vertical-align: middle; | vertical-align: middle; | ||
} | } | ||
Linha 160: | Linha 164: | ||
.filter-label { | .filter-label { | ||
margin-left: 10px; | margin-left: 10px; | ||
/* Espaço entre a checkbox e o texto */ | |||
font-size: 14px; | font-size: 14px; | ||
font-weight: bold; | font-weight: bold; | ||
color: #0d0d0d; | color: #0d0d0d; | ||
line-height: 1.5; | line-height: 1.5; | ||
/* Ajusta a altura da linha para um alinhamento adequado */ | |||
} | } | ||
</style> | </style> | ||
</head> | </head> | ||
<body> | <body> | ||
< | <form id="mapForm"> | ||
<div id="mapTypeSelection" class="input-group"> | |||
<div class="input-group" | |||
<select id="mapType" class="maps__select"> | <select id="mapType" class="maps__select"> | ||
<option value="">Selecione | <option value="">Selecione um mapa</option> | ||
<option value="1">Mapa Vermelho</option> | <option value="1">Mapa Vermelho</option> | ||
<option value="2">Mapa Verde</option> | <option value="2">Mapa Verde</option> | ||
<option value="3">Mapa Roxo</option> | <option value="3">Mapa Roxo</option> | ||
</select> | </select> | ||
<label class="maps__label" for="mapType">Tipo de Mapa</label> | |||
</div> | </div> | ||
<div class="input-group" | <div id="specificOptions" class="hidden input-group"> | ||
<select id="specificOption" class="maps__select"> | |||
<select id=" | <option value="">Selecione uma opção</option> | ||
<option value="">Selecione | |||
<option value="Areia">Areia</option> | <option value="Areia">Areia</option> | ||
<option value="Gelo">Gelo</option> | <option value="Gelo">Gelo</option> | ||
Linha 192: | Linha 197: | ||
<option value="Pisos">Pisos</option> | <option value="Pisos">Pisos</option> | ||
</select> | </select> | ||
<label class="maps__label" for="specificOption">Local do X</label> | |||
</div> | </div> | ||
<div class="filter-container"> | <div class="filter-container"> | ||
<input type="checkbox" id=" | <input type="checkbox" id="enableFilter"> | ||
<label for=" | <label for="enableFilter" class="filter-label">Ativar filtro</label> | ||
</div> | </div> | ||
<select id="filterOption" class="maps__select"> | <select id="filterOption" class="maps__select"> | ||
<option value="">Escolha uma Opção</option> | <option value="">Escolha uma Opção</option> | ||
Linha 208: | Linha 210: | ||
</select> | </select> | ||
</div> | </div> | ||
<div class="input-group"> | <div id="filterSection" class="hidden"> | ||
<input type="text" id=" | <div id="filterById" class="input-group"> | ||
<button id="filterButton"> | <label for="filterOption" class="maps__label">Filtrar Por</label> | ||
<img src="https://wiki.pokexgames.com/images/8/82/Botao_Filtrar_Mapas_Adv.png" alt=" | <select id="filterOption" class="maps__select"> | ||
<option value="">Escolha uma Opção</option> | |||
<label for="searchIds" class="mapsCalc__label">Filtrar por Número</option> | |||
<option value="tag">Filtrar por Tag</option> | |||
<input type="text" id="searchIds" placeholder="Digite os números separados por vírgula" | |||
class="mapsCalc__select"> | |||
</div> | |||
<div class="d-flex justify-center align-center flex-column"> | |||
<button type="button" id="filterButton" class="hover-minimize"> | |||
<img src="https://wiki.pokexgames.com/images/8/82/Botao_Filtrar_Mapas_Adv.png" | |||
alt="Imagem botão filtrar"> | |||
</button> | </button> | ||
</div> | </div> | ||
</div> | </div> | ||
<div id="imageContainer" class="image-container hidden"> | |||
<!-- As imagens e suas informações serão exibidas aqui --> | |||
</div> | |||
</form> | |||
<script> | <script> | ||
const specificOptions = { | const specificOptions = { | ||
1: { // Mapa Vermelho | 1: { // Mapa Vermelho | ||
Areia: [ | 'Areia': [ | ||
{ id: ' | { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7', imageUrl: 'https://wiki.pokexgames.com/images/d/db/3780%2C_3326%2C_7.png' }, | ||
], | ], | ||
// Outras opções do Mapa Vermelho | |||
}, | }, | ||
2: { | |||
'Areia': [ | 'Areia': [ | ||
{ id: '1001', local: ' Outland Water', coordinates: '2847, 2827, 6', imageUrl: 'https://wiki.pokexgames.com/images/b/b9/Mapa_Verde_ADV_-_2847%2C_2827%2C_6.webp' }, | { id: '1001', local: ' Outland Water', coordinates: '2847, 2827, 6', imageUrl: 'https://wiki.pokexgames.com/images/b/b9/Mapa_Verde_ADV_-_2847%2C_2827%2C_6.webp' }, | ||
Linha 303: | Linha 311: | ||
] | ] | ||
}, | }, | ||
3: { // Mapa Roxo | 3: { // Mapa Roxo | ||
// Adicionar dados para o Mapa Roxo aqui | |||
} | } | ||
}; | }; | ||
if ( | document.getElementById('enableFilter').addEventListener('change', function () { | ||
const filterSection = document.getElementById('filterSection'); | |||
if (this.checked) { | |||
filterSection.classList.remove('hidden'); | |||
} else { | |||
filterSection.classList.add('hidden'); | |||
} | |||
}); | |||
document.getElementById('searchIds').addEventListener('keypress', function (event) { | |||
if (event.key === 'Enter') { | |||
event.preventDefault(); | |||
document.getElementById('filterButton').click(); | |||
} | |||
}); | |||
document.getElementById('mapType').addEventListener('change', function () { | |||
const selectedMapType = this.value; | |||
const specificOptionSelect = document.getElementById('specificOption'); | |||
if (selectedMapType) { | |||
specificOptionSelect.innerHTML = '<option value="">Selecione uma opção</option>'; | |||
const options = Object.keys(specificOptions[selectedMapType]); | |||
options.forEach(option => { | |||
specificOptionSelect.innerHTML += <option value="${option}">${option}</option>; | |||
}); | }); | ||
document.getElementById('specificOptions').classList.remove('hidden'); | |||
} else { | |||
document.getElementById('specificOptions').classList.add('hidden'); | |||
} | } | ||
} | }); | ||
document.getElementById('specificOption').addEventListener('change', function () { | |||
const selectedMapType = document.getElementById('mapType').value; | |||
const selectedOption = this.value; | |||
const imageContainer = document.getElementById('imageContainer'); | |||
if (selectedMapType && selectedOption) { | |||
const images = specificOptions[selectedMapType][selectedOption]; | |||
let imagesHtml = ''; | |||
if (Array.isArray(images)) { | |||
images.forEach(image => { | |||
imagesHtml += | |||
<div class="image-item"> | |||
<img src="${image.imageUrl}" alt="${selectedOption}"> | |||
<div class="image-info"> | |||
<b>Número do Mapa</b>: ${image.id} <br> | |||
<b>Local</b>: ${image.local} <br> | |||
<b>Coordenada</b>: ${image.coordinates}<br> | |||
<b>Tag(s)</b>: ${image.tag} | |||
</div> | |||
</div> | |||
; | |||
}); | |||
} else { | |||
imagesHtml = | |||
<div class="image-item"> | |||
<img src="${images.imageUrl}" alt="${selectedOption}"> | |||
<div class="image-info"> | |||
<b>Número do Mapa</b>: ${images.id} <br> | |||
<b>Local</b>: ${images.local} <br> | |||
<b>Coordenada</b>: ${images.coordinates} | |||
</div> | |||
</div> | |||
; | |||
} | |||
imageContainer.innerHTML = imagesHtml; | |||
imageContainer.classList.remove('hidden'); | |||
} else { | } else { | ||
imageContainer.classList.add('hidden'); | |||
} | } | ||
}); | }); | ||
document.getElementById('filterButton').addEventListener('click', function() { | document.getElementById('filterButton').addEventListener('click', function () { | ||
const searchIds = document.getElementById('searchIds').value.split(',').map(id => id.trim()); | |||
const imageContainer = document.getElementById('imageContainer'); | |||
if (searchIds.length > 0) { | |||
let imagesHtml = ''; | |||
let allImages = []; | |||
// Recolhe todas as imagens que correspondem aos IDs | |||
Object.keys(specificOptions).forEach(mapType => { | |||
const mapOptions = specificOptions[mapType]; | |||
Object.keys(mapOptions).forEach(option => { | |||
const images = mapOptions[option].filter(image => searchIds.includes(image.id)); | |||
allImages = allImages.concat(images); | |||
}); | |||
}); | |||
// Ordena as imagens pelo nome do local | |||
allImages.sort((a, b) => a.local.localeCompare(b.local)); | |||
// Gera o HTML para exibir as imagens ordenadas | |||
allImages.forEach(image => { | |||
imagesHtml += | |||
<div class="image-item"> | |||
<img src="${image.imageUrl}" alt="Imagem ID ${image.id}"> | |||
<div class="image-info"> | |||
<b>Número do Mapa</b>: ${image.id} <br> | |||
<b>Local</b>: ${image.local} <br> | |||
<b>Coordenada</b>: ${image.coordinates}<br> | |||
<b>Tag(s)</b>: ${image.tag} | |||
</div> | |||
</div> | |||
; | |||
}); | |||
imageContainer.innerHTML = imagesHtml || 'Nenhuma imagem encontrada com os números fornecidos.'; | |||
imageContainer.classList.remove('hidden'); | |||
} else { | |||
imageContainer.classList.add('hidden'); | |||
} | } | ||
}); | }); | ||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> |