当我的导航栏使用引导程序“固定”时,我也想应用自定义 CSS,但我不确定如何检测该事件。Bootstrap 的词缀没有这个参数。
我的haml代码目前是
windowReady = ->
$('nav').height($('.affixable').height());
$('.affixable').affix({
offset: { top: $('.affixable').offset().top };
});
# This is should activate when the navbar becomes affixed at the specified scroll offset.
$('.affix').css({"box-shadow":"0 4px 2px -2px #888"});
$(window).load(windowReady);
$(window).on('page:load', windowReady);
感谢您的帮助=]