0

当我的导航栏使用引导程序“固定”时,我也想应用自定义 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);

感谢您的帮助=]

4

1 回答 1

1

当词缀启动时,它会将.affix类应用于元素,因此您可以将自定义 CSS 设置为.affix这样..

.affix {
    box-shadow:0 4px 2px -2px #888;
}

http://bootply.com/ggyKI6JbUB

于 2014-05-14T13:24:17.077 回答