Terreno en Acolman, Estado de México

Vendido

Terreno con excelente ubicación

Detalles

body { font-family: Arial, sans-serif; margin: 0; padding: 0; } .gallery { display: flex; flex-wrap: wrap; justify-content: center; } .gallery img { width: 200px; height: 150px; object-fit: cover; margin: 5px; cursor: pointer; transition: transform 0.3s; } .gallery img:hover { transform: scale(1.2); } .modal { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); overflow: auto; } .modal-content { display: block; margin: auto; max-width: 800px; max-height: 80%; } .modal-content img { width: 100%; height: auto; display: block; margin: auto; } .modal-prev, .modal-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 30px; color: white; cursor: pointer; } .modal-prev { left: 10px; } .modal-next { right: 10px; } .modal-close { position: absolute; top: 10px; right: 10px; font-size: 30px; color: white; cursor: pointer; } var images = []; var currentImageIndex = 0; function openModal(index) { document.getElementById(‘modal’).style.display = ‘block’; document.getElementById(‘modalImage’).src = images[index].src; currentImageIndex = index; } function closeModal() { document.getElementById(‘modal’).style.display = ‘none’; } function showPrevImage() { currentImageIndex = (currentImageIndex – 1 + images.length) % images.length; var prevImageSrc = images[currentImageIndex].src; document.getElementById(‘modalImage’).src = prevImageSrc; } function showNextImage() { currentImageIndex = (currentImageIndex + 1) % images.length; var nextImageSrc = images[currentImageIndex].src; document.getElementById(‘modalImage’).src = nextImageSrc; } // Obtener las imágenes al cargar la página window.onload = function() { images = document.querySelectorAll(‘.gallery img’); };