All checks were successful
Build MkDocs / build-and-deploy (push) Successful in 13s
15 lines
446 B
JavaScript
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' });
|
|
});
|
|
});
|