publicidad cabecera


 

ÚLTIMAS NOTICIAS

LAS ELECCIONES EUROPEAS ARROJAN UN RESULTADO EN JUMILLA MUY FAVORABLE PARA EL PP

 


Las elecciones europeas del pasado domingo han dado una clara victoria a nivel local al Partido Popular con 3.279 votos obtenidos (43,26%), seguido del PSOE con 2.220 votos (28,29%), VOX obtuvo 968 votos (12,77%), la nueva formación Se Acabó la Fiesta obtuvo 465 votos (6,13%), Sumar consiguió 202 votos (2,66%) y Podemos 127 votos (1,67%).

La participación en Jumilla fue del 42,99% (7.656 votos), con una abstención del 57% (10.151 votos). En blanco salieron 45 sobres (0,59%) y nulos 77.

A nivel nacional, los 61 europarlamentarios se reparten de la siguiente forma:

PP: 22

PSOE: 20

VOX: 6

ACCIƓN REPUBLICADA: 3

SUMAR: 3

SE ACABƓ LA FIESTA: 3

PODEMOS: 2

JUNTS: 1

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'; }); }); });