ilyamak04 89c2b62dc1
All checks were successful
Build MkDocs / build-and-deploy (push) Successful in 13s
+
2025-02-09 11:32:56 +03:00

15 lines
446 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
const btn = document.createElement('div');
btn.id = 'back-to-top';
btn.innerText = '↑ Наверх';
document.body.appendChild(btn);
window.addEventListener('scroll', () => {
btn.style.display = window.scrollY > 200 ? 'block' : 'none';
});
btn.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
});