【发布时间】:2014-03-31 19:58:44
【问题描述】:
我尝试了许多具有数据属性和 Javascript 语法的语法,以便在我向下滚动时为附加对象设置 .affix-bottom 类,但它不起作用。 当我检查附加元素时,当我通过向下滚动到达页面底部时,.affix 类不会变为 .affix-bottom。
我已经尝试了很多sn-ps,包括官方文档中提供的那些:
<div data-spy="affix" data-offset-top="60" data-offset-bottom="200">
...
</div>
====
$('#my-affix').affix({
offset: {
top: 100
, bottom: function () {
return (this.bottom = $('.footer').outerHeight(true))
}
}
})
我错过了什么吗?
先谢谢了。
【问题讨论】:
-
您能否也发布您的 HTML 标记 - 或创建一个 Bootply?