1
0
Fork 0
mirror of synced 2025-04-04 14:23:40 +03:00
api-client-php/js/template.js
2025-03-20 13:41:56 +00:00

17 lines
440 B
JavaScript

(function(){
window.addEventListener('load', () => {
const el = document.querySelector('.phpdocumentor-on-this-page__content')
if (!el) {
return;
}
const observer = new IntersectionObserver(
([e]) => {
e.target.classList.toggle("-stuck", e.intersectionRatio < 1);
},
{threshold: [1]}
);
observer.observe(el);
})
})();