2

我在这段代码上遇到了关于引导词缀底部的问题:http: //jsfiddle.net/uvnGP/131/

var headerHeight = $('header').outerHeight(true);
var footerHeight = $('footer').innerHeight();
$('#account-overview-container').affix({
    offset: {
    top: headerHeight,
    bottom: footerHeight
    }
}).on('affix.bs.affix', function () { // before affix
    $(this).css({
        'width': $(this).outerWidth()  // variable widths
    });
}).on('affix-bottom.bs.affix', function () { // before affix-bottom
    $(this).css('bottom', 'auto'); // THIS is what makes the jumping
});

当 jsfiddle 上的滚动很流畅但是一旦我在本地测试代码(使用 Firefox),它根本不流畅(有时我滚动页脚并在页脚上显示导航,请检查此屏幕截图http://awesomescreenshot.com /04e2gnjk17)。我检查了萤火虫,它表明在页脚滚动时,导航类在 affix 和 affix-bottom 之间发生了变化(如果在页脚滚动,它应该在 affix-bottom 上显示棒)。

我怎么解决这个问题 ?

谢谢查拉

4

0 回答 0