我在Magento开了一家网店。我想滚动时将其默认侧边栏设置为自定义粘性侧边栏。
链接:
答案 0 :(得分:0)
你可以这样做......
var thisScroll = 0, lastScroll = 0;
var cutoff = 145 (whatever the threshold for the switch should be)
$(window).scroll(function(){
if(thisScroll > lastScroll && thisScroll > cutoff {
$(navbar).addClass('fixed');
}
else if (lastScroll > thisScroll && lastScroll < cutoff{
$(navbar).removeClass('fixed');
}
});
然后您可以使用CSS来执行粘性侧导航(只需添加位置:固定以及您想要转换的任何其他内容)