Widget:Test
<!DOCTYPE html> <html lang="pt-BR"> <head>
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Busca de Imagens por Nome</title> <style> .input-group { margin-bottom: 1em; } .hidden { display: none; } .image-item { margin-bottom: 1em; } .image-info { margin-top: 0.5em; } </style>
</head> <body>
<form id="imageForm">
<input type="text" id="imageSearch" placeholder="Digite o nome da imagem"> <button type="button" id="searchImageButton">Buscar Imagem</button>
</form>
<script> // Lista de imagens e suas informações adicionadas manualmente const imageList = { 'Charmander': { imageUrl: 'https://example.com/charmander.png', description: 'Charmander, o Pokémon de fogo inicial.' }, 'Bulbasaur': { imageUrl: 'https://example.com/bulbasaur.png', description: 'Bulbasaur, o Pokémon de grama inicial.' }, 'Squirtle': { imageUrl: 'https://example.com/squirtle.png', description: 'Squirtle, o Pokémon de água inicial.' } // Adicione mais imagens conforme necessário };
document.getElementById('searchImageButton').addEventListener('click', function() { const imageName = document.getElementById('imageSearch').value.trim(); const imageContainer = document.getElementById('imageContainer');
if (imageName && imageList[imageName]) { const imageInfo = imageList[imageName];
imageContainer.innerHTML = `
<img src="${imageInfo.imageUrl}" alt="${imageName}">
Nome da Imagem: ${imageName}
Descrição: ${imageInfo.description}
URL: ${imageInfo.imageUrl}
`; imageContainer.classList.remove('hidden'); } else { imageContainer.innerHTML = 'Imagem não encontrada.'; imageContainer.classList.remove('hidden'); } }); </script>
</body> </html>