CONTACT US

Email: hola@emeraldlanzarote.com

Tel: +34687015898

Facebook

Instagram

Booking inquiry

This site is protected by reCAPTCHA and the Google privacy policy and Terms of Service apply.

©2025 Emerald Lanzarote All rights reserved - Powered byLodgify
// Footer Script for Emerald Lanzarote (function() { console.log("Footer script loaded successfully for Emerald Lanzarote."); // Agregar un botón de 'Volver arriba' const backToTopButton = document.createElement('button'); backToTopButton.innerText = "↑ Volver arriba"; backToTopButton.style.position = 'fixed'; backToTopButton.style.bottom = '20px'; backToTopButton.style.right = '20px'; backToTopButton.style.zIndex = '1000'; backToTopButton.style.padding = '10px 15px'; backToTopButton.style.backgroundColor = '#007BFF'; backToTopButton.style.color = '#fff'; backToTopButton.style.border = 'none'; backToTopButton.style.borderRadius = '5px'; backToTopButton.style.cursor = 'pointer'; backToTopButton.style.display = 'none'; document.body.appendChild(backToTopButton); // Mostrar el botón al hacer scroll window.addEventListener('scroll', function() { if (window.scrollY > 300) { backToTopButton.style.display = 'block'; } else { backToTopButton.style.display = 'none'; } }); // Desplazarse hacia arriba al hacer clic en el botón backToTopButton.addEventListener('click', function() { window.scrollTo({ top: 0, behavior: 'smooth' }); }); })();