mirror of
https://github.com/AlekseyLobanov/AlekseyLobanov.github.io.git
synced 2026-01-12 05:02:02 +03:00
13 lines
411 B
JavaScript
13 lines
411 B
JavaScript
(function() {
|
|
function onScroll(e) {
|
|
var sidebar = document.getElementById('sidebar-container-fixed');
|
|
if (window.scrollY > 0) {
|
|
sidebar.style.width = sidebar.offsetWidth + 'px'
|
|
sidebar.classList.add('sticky');
|
|
} else {
|
|
sidebar.style.width = 'auto'
|
|
sidebar.classList.remove('sticky');
|
|
}
|
|
}
|
|
document.addEventListener('scroll', onScroll);
|
|
})(); |