mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
13 lines
497 B
JavaScript
13 lines
497 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
function updateFooterPosition() {
|
|
const footer = document.querySelector('.footer');
|
|
const containerHeight = document.querySelector('.main').offsetHeight + footer.offsetHeight;
|
|
footer.classList.toggle('footer-fixed', containerHeight <= window.innerHeight);
|
|
}
|
|
|
|
updateFooterPosition();
|
|
window.addEventListener('resize', updateFooterPosition);
|
|
window.addEventListener('scroll', updateFooterPosition, { passive: true });
|
|
});
|