I used the sticky-kit framework for the Jquery to fix the sidebar. And I did it successfully, and it's like that
And this site has put this code in its js section . offset_top: 10
This height is maintained from both the scroll down and the scroll up mode. And it works right
I want to change this to 10 pixels if you scroll up. And if you scroll down, have a distance of 0 pixels
And so I wrote the code below, but it doesn't work:
if (scroll_to_top) {
$("#aside").stick_in_parent({
offset_top: 10
});
}
if (scroll_to_down) {
$("#aside").stick_in_parent({
offset_top: 0
});
}
What should I do?