Reputation: 651
I am trying to make the header and sidebar sticky upon scrolling. The header is sticking fine. The sidebar sticks as well, but continuously flickers. I read somewhere this is due to a Chrome bug, but the issue is universal.
When I try to debug via developer tools, I can see the class "sticky" being continuously added and removed to the sidebar, unlike the header.
Any insights will be highly appreciated.
JS:
function ScrollFunc() { /* navbar */ if (window.pageYOffset >= (jQuery('#nav-wrapper').height()) { jQuery('#nav-wrapper').addClass("sticky"); } else { jQuery('#nav-wrapper').removeClass("sticky"); } /* sidebar */ if (window.pageYOffset >= (jQuery("#sidebar").offset().top + jQuery("#sidebar').height())) { jQuery('#sidebar').addClass('sticky'); } else { jQuery('#sidebar').removeClass("sticky"); } }
CSS:
.sticky { position: fixed; top: 0; }
Upvotes: 1
Views: 849
Reputation: 651
Fixed:
jQuery(window).load(function() {
crazyOffset = jQuery('#sidebar').offset().top + jQuery('#sidebar').height();
});
function ScrollFunc() {
/* navbar */
if (window.pageYOffset >= (jQuery('#nav-wrapper').height()) {
jQuery('#nav-wrapper').addClass("sticky");
} else {
jQuery('#nav-wrapper').removeClass("sticky");
}
/* sidebar */
if (window.pageYOffset >= crazyOffset) {
jQuery('#sidebar').addClass('sticky');
} else {
jQuery('#sidebar').removeClass("sticky");
}
}
Upvotes: -1