5ème week end Festif du 14 mai au 17 mai avec au programme :
Tout le week-end, activités ludiques : 10h-18h30
Canopée Ludik, Caskad de Tyroliennes, Sentier Ludik, Explor Games, Cordes Games, Wood Games : activités payantes.
Resto midi et soir. Buvette-Bar : Toute la journée.
Programme complet :
Jeudi 14 mai 2026 - 19h-23h :
Soirée jeux de société (accès libre) + tyrolienne nocturne à partir de 12 ans (activité payante, 16 euros par personne / passage. Présence adulte pour mineurs)
Vendredi 15 mai 2026 :
- 19h : Apéro Ambiance
- 21h : Spectacle "Les Pondarmes par la Compagnie "Un de ces 4" (Aventure burlesque, cirque) | Accès libre.
Samedi 16 mai 2026 :
- 19h : Apéro Ambiancé
- 21h : Spectacle "John et Les Nonnes" par la Compagnie "Un de ces 4" (Show caritatif : cirque, chant, humour) | Accès libre.
- 22h-01h : Le Baloche des Eterpets
Dimanche 17 mai 2026 - 14h30-18h :
Jeux de société / Jeux géants en accès libre
document.addEventListener('DOMContentLoaded', function() {
var stickyElement = document.querySelector('.container-sticky');
var parentElement = document.querySelector('.container_sommaire_ancre');
var footerElement = document.querySelector('.kg-footer__blocks');
var ancreListElement = document.getElementById('ancre_list');
function checkStickyPosition() {
if (!stickyElement || !footerElement || !parentElement) return;
var stickyRect = stickyElement.getBoundingClientRect();
var footerRect = footerElement.getBoundingClientRect();
var parentRect = parentElement.getBoundingClientRect();
// Get current scroll position from the top of the document
var scrollY = window.scrollY || window.pageYOffset;
// Distance from sticky element to the footer
var stickyBottom = stickyElement.offsetTop + stickyElement.offsetHeight;
var footerTop = footerElement.offsetTop;
// Add the sticky-stop class if the sticky element would overlap the footer
if (stickyBottom + scrollY > footerTop) {
stickyElement.classList.add('sticky-stop');
} else {
stickyElement.classList.remove('sticky-stop');
}
}
function updateResponsiveStyles() {
if (window.innerWidth <= 1200) {
// Supprimer l'ID 'ancre_list' pour les petits écrans
if (ancreListElement && ancreListElement.id) {
ancreListElement.removeAttribute('id');
console.log('1')
}
} else {
// Réappliquer l'ID si nécessaire sur les écrans plus grands
if (ancreListElement && !ancreListElement.id) {
ancreListElement.id='ancre_list' ;
}
}
}
// Appeler les fonctions au chargement de la page
checkStickyPosition();
updateResponsiveStyles();
// Réagir aux événements de défilement et de redimensionnement
window.addEventListener('scroll', checkStickyPosition);
window.addEventListener('resize', function() {
updateResponsiveStyles();
checkStickyPosition();
});
// Observer les changements de dimension pour appliquer les styles immédiatement
var resizeObserver=new ResizeObserver(function() {
updateResponsiveStyles();
});
resizeObserver.observe(document.body);
});