Triccsr 1b2b0040b4
Display sidebar on mobile for Pisces and Gemini (#710)
Co-authored-by: Mimi <1119186082@qq.com>
2024-04-26 22:09:19 +08:00

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 });
});