39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
export const createPlaceholder = () => {
|
|
const placeholder = document.createElement('div');
|
|
placeholder.classList.add('sticky-placeholder');
|
|
|
|
return placeholder;
|
|
};
|
|
|
|
export const isSticky = (el, scrollY, stickyTop, insertPlaceholder) => {
|
|
const top = Math.floor(el.offsetTop - scrollY);
|
|
|
|
if (top <= stickyTop && !el.classList.contains('is-stuck')) {
|
|
const placeholder = insertPlaceholder ? createPlaceholder() : null;
|
|
const heightBefore = el.offsetHeight;
|
|
|
|
el.classList.add('is-stuck');
|
|
|
|
if (insertPlaceholder) {
|
|
el.parentNode.insertBefore(placeholder, el.nextElementSibling);
|
|
|
|
placeholder.style.height = `${heightBefore - el.offsetHeight}px`;
|
|
}
|
|
} else if (top > stickyTop && el.classList.contains('is-stuck')) {
|
|
el.classList.remove('is-stuck');
|
|
|
|
if (insertPlaceholder && el.nextElementSibling && el.nextElementSibling.classList.contains('sticky-placeholder')) {
|
|
el.nextElementSibling.remove();
|
|
}
|
|
}
|
|
};
|
|
|
|
export default (el, stickyTop, insertPlaceholder = true) => {
|
|
if (!el) return;
|
|
|
|
if (typeof CSS === 'undefined' || !(CSS.supports('(position: -webkit-sticky) or (position: sticky)'))) return;
|
|
|
|
document.addEventListener('scroll', () => isSticky(el, window.scrollY, stickyTop, insertPlaceholder), {
|
|
passive: true,
|
|
});
|
|
};
|