Czasopismo „Społeczeństwo i Polityka”
document.addEventListener("DOMContentLoaded", function() { const bar = document.getElementById('myStickyBar'); const sentinel = document.getElementById('sticky-sentinel'); // --- Obsługa przyklejania belki (bez zmian) --- const observer = new IntersectionObserver((entries) => { if (!entries[0].isIntersecting) { bar.style.boxShadow = '0 4px 12px rgba(0, 0, 0, 0.1)'; } else { bar.style.boxShadow = 'none'; } }, { rootMargin: "-1px 0px 0px 0px", threshold: [1] }); observer.observe(sentinel); }); // Obniżenie belki na scroll UP