Widget:Test: mudanças entre as edições

Ir para navegação Ir para pesquisar
sem sumário de edição
Sem resumo de edição
Sem resumo de edição
Linha 7: Linha 7:
     <style>
     <style>
         .input-group { margin-bottom: 1em; }
         .input-group { margin-bottom: 1em; }
         .hidden { display: none; }
         .dropdown {
            border: 1px solid #ccc;
            display: none;
            position: absolute;
            background-color: #fff;
            z-index: 1000;
            max-height: 150px;
            overflow-y: auto;
        }
        .dropdown-item {
            padding: 8px;
            cursor: pointer;
        }
        .dropdown-item:hover {
            background-color: #f0f0f0;
        }
         .image-item { margin-bottom: 1em; }
         .image-item { margin-bottom: 1em; }
         .image-info { margin-top: 0.5em; }
         .image-info { margin-top: 0.5em; }
Linha 15: Linha 30:
     <form id="imageForm">
     <form id="imageForm">
         <div class="input-group">
         <div class="input-group">
             <input type="text" id="imageSearch" placeholder="Digite o nome da imagem">
             <input type="text" id="imageSearch" placeholder="Digite o nome da imagem" autocomplete="off">
            <div id="dropdown" class="dropdown"></div>
         </div>
         </div>


Linha 24: Linha 40:


     <script>
     <script>
        // Lista de imagens e suas informações adicionadas manualmente
         const imageList = {
         const imageList = {
             'Charmander': {  
             'Charmander': {  
Linha 41: Linha 56:
         };
         };


         document.getElementById('imageSearch').addEventListener('input', function() {
         const imageSearch = document.getElementById('imageSearch');
        const dropdown = document.getElementById('dropdown');
        const imageContainer = document.getElementById('imageContainer');
 
        imageSearch.addEventListener('input', function() {
             const searchValue = this.value.trim().toLowerCase();
             const searchValue = this.value.trim().toLowerCase();
             const imageContainer = document.getElementById('imageContainer');
             dropdown.innerHTML = '';
            let imagesHtml = '';


             Object.keys(imageList).forEach(imageName => {
             if (searchValue) {
                if (imageName.toLowerCase().includes(searchValue)) {
                Object.keys(imageList).forEach(imageName => {
                    const imageInfo = imageList[imageName];
                    if (imageName.toLowerCase().includes(searchValue)) {
                    imagesHtml += `
                        const dropdownItem = document.createElement('div');
                         <div class="image-item">
                        dropdownItem.textContent = imageName;
                            <img src="${imageInfo.imageUrl}" alt="${imageName}">
                         dropdownItem.classList.add('dropdown-item');
                             <div class="image-info">
                        dropdownItem.addEventListener('click', function() {
                                <b>Nome da Imagem</b>: ${imageName} <br>
                             showImageInfo(imageName);
                                <b>Descrição</b>: ${imageInfo.description} <br>
                            dropdown.style.display = 'none';
                                <b>URL</b>: ${imageInfo.imageUrl}
                        });
                            </div>
                         dropdown.appendChild(dropdownItem);
                         </div>
                     }
                     `;
                 });
                 }
            });


            if (imagesHtml) {
                 dropdown.style.display = dropdown.childNodes.length ? 'block' : 'none';
                 imageContainer.innerHTML = imagesHtml;
                imageContainer.classList.remove('hidden');
             } else {
             } else {
                 imageContainer.innerHTML = 'Nenhuma imagem encontrada.';
                 dropdown.style.display = 'none';
                 imageContainer.classList.remove('hidden');
            }
        });
 
        document.addEventListener('click', function(event) {
            if (!imageSearch.contains(event.target) && !dropdown.contains(event.target)) {
                 dropdown.style.display = 'none';
             }
             }
         });
         });
        function showImageInfo(imageName) {
            const imageInfo = imageList[imageName];
            const imagesHtml = `
                <div class="image-item">
                    <img src="${imageInfo.imageUrl}" alt="${imageName}">
                    <div class="image-info">
                        <b>Nome da Imagem</b>: ${imageName} <br>
                        <b>Descrição</b>: ${imageInfo.description} <br>
                        <b>URL</b>: ${imageInfo.imageUrl}
                    </div>
                </div>
            `;
            imageContainer.innerHTML = imagesHtml;
            imageContainer.classList.remove('hidden');
        }
     </script>
     </script>
</body>
</body>
</html>
</html>
5 667

edições

Menu de navegação