5 667
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 12: | Linha 12: | ||
width: 100px; | width: 100px; | ||
height: 100px; | height: 100px; | ||
margin: 5px; | |||
} | |||
select { | |||
margin: 5px; | margin: 5px; | ||
} | } | ||
Linha 21: | Linha 24: | ||
<form id="mapForm"> | <form id="mapForm"> | ||
<div id="mapTypeSelection"> | <div id="mapTypeSelection"> | ||
<label | <label for="mapType">Tipo de Mapa:</label> | ||
< | <select id="mapType"> | ||
<option value="">Selecione um mapa</option> | |||
<option value="1">Mapa Vermelho</option> | |||
<option value="2">Mapa Verde</option> | |||
<option value="3">Mapa Roxo</option> | |||
</select> | |||
</div> | </div> | ||
<div id="specificOptions" class="hidden"> | <div id="specificOptions" class="hidden"> | ||
< | <label for="specificOption">Opções Específicas:</label> | ||
<select id="specificOption"> | |||
<option value="">Selecione uma opção</option> | |||
</select> | |||
</div> | </div> | ||
Linha 54: | Linha 64: | ||
}; | }; | ||
document. | document.getElementById('mapType').addEventListener('change', function() { | ||
const selectedMapType = this.value; | |||
const specificOptionSelect = document.getElementById('specificOption'); | |||
const imageContainer = document.getElementById('imageContainer'); | |||
specificOptionSelect.innerHTML = '<option value="">Selecione uma opção</option>'; | |||
imageContainer.innerHTML = ''; | |||
if (selectedMapType) { | |||
const options = 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'); | |||
imageContainer.classList.add('hidden'); | document.getElementById('imageContainer').classList.add('hidden'); | ||
} | } | ||
}); | }); | ||
document.getElementById(' | document.getElementById('specificOption').addEventListener('change', function() { | ||
const selectedOption = | const selectedOption = this.value; | ||
const imageContainer = document.getElementById('imageContainer'); | const imageContainer = document.getElementById('imageContainer'); | ||
Linha 87: | Linha 92: | ||
if (selectedOption) { | if (selectedOption) { | ||
const | const imageUrl = images[selectedOption]; | ||
if ( | if (imageUrl) { | ||
imageContainer.innerHTML = `<img src="${ | imageContainer.innerHTML = `<img src="${imageUrl}" alt="${selectedOption}">`; | ||
imageContainer.classList.remove('hidden'); | imageContainer.classList.remove('hidden'); | ||
} | } | ||
} else { | |||
imageContainer.classList.add('hidden'); | |||
} | } | ||
}); | }); |