document.addEventListener("DOMContentLoaded", function() { setTimeout(function(){ // Crear la imagen var imagens = new Image(); imagens.src = "objetos/es/logo.png"; imagens.setAttribute('class', "img-fluid animated"); imagens.setAttribute('alt', 'logo'); // Añadir la imagen al contenedor var imagenContainers = document.getElementById("logoprincipal"); imagenContainers.appendChild(imagens); }, 75); }); document.addEventListener("DOMContentLoaded", function() { setTimeout(function(){ // Crear la imagen var imagen = new Image(); imagen.src = "objetos/es/valores.png"; imagen.setAttribute('class', "img-fluid"); imagen.style="max-height:800px;max-width:800px"; imagen.setAttribute('data-aos', 'zoom-in'); imagen.setAttribute('data-aos-delay', 150); imagen.setAttribute('alt', 'Valores - Values'); // Añadir la imagen al contenedor var imagenContainer = document.getElementById("imagenContainer"); imagenContainer.appendChild(imagen); }, 1200); }); document.addEventListener("DOMContentLoaded", function() { setTimeout(function() { // Crear el iframe var iframe = document.createElement("iframe"); iframe.src = "https://www.openstreetmap.org/export/embed.html?bbox=-70.41666674910889%2C-75.13325335587255%2C-61.41666674910889%2C-29.13325335587255&layer=mapnik"; iframe.setAttribute('frameborder', '0'); iframe.setAttribute('style', 'border:0; width: 100%; height: 290px;'); iframe.setAttribute('allowfullscreen', ''); // Añadir el iframe al contenedor var iframeContainer = document.getElementById("iframeContainer"); iframeContainer.appendChild(iframe); }, 1200); });