publicidad cabecera


 

ÚLTIMAS NOTICIAS

Corazón

En esta página podrás encontrar todas aquellas revistas que tanto te gustan. En Cope Jumilla, queremos que estes informada de todos los temas del corazón.





























No hay comentarios

// Animación de entrada para posts document.addEventListener('DOMContentLoaded', function() { const posts = document.querySelectorAll('.index .post, .archive .post'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); } }); }, { threshold: 0.1 }); posts.forEach(post => { observer.observe(post); }); // Efecto hover mejorado const featuredItems = document.querySelectorAll('.featured li'); featuredItems.forEach(item => { item.addEventListener('mouseenter', function() { this.style.zIndex = '10'; }); item.addEventListener('mouseleave', function() { this.style.zIndex = '1'; }); }); });