4

我的网站上的侧边栏有问题。我正在使用 Bootstrap 词缀将其固定到页面末尾,它应该在某个时间点与其余内容一起出现......

它在 Chrome 和 Safari 上运行良好,但在 Firefox 或 IE 上,侧边栏并不总是随着滚动结束时的内容向上移动......当我慢慢滚动时,它运行良好,但如果我滚动太快,侧边栏的底部将覆盖页脚。

这是一个您可以在其中看到它的页面。

我找不到与该问题相关的任何信息。任何人都可以帮忙吗?

谢谢

4

1 回答 1

6

这是 Bootstrap 中的一个错误,已在此处解决:https ://github.com/iainvdw/bootstrap/commit/c786f454c9175cce5bcf9a7074a3e206533b3d1a

但是,它似乎不包含在您网站上使用的 3.1.1 版本中。

要手动执行此操作,请替换此行:

offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :

有了这个:

offsetBottom != null && (Math.ceil(position.top) + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
于 2014-03-27T17:56:17.460 回答