我试图在网站的底部制作一个粘性横幅,除非我使用jQuery Sticky Plugin,否则碰巧不是那么简单。问题是Sticky在使用粘性标题(topSpacing
参数)时表现不错,但是bottomSpacing
参数存在问题,这对我来说就像topSpacing
一样。我已完成了示例中的所有操作,因此我的标题如下所示:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.sticky.js"></script>
<script>
$(document).ready(function(){
$("#banner").sticky({topSpacing:0});
});
</script>
如此简单,它适用于粘贴标题,但将topSpacing
替换为bottomSpacing
根本不会改变任何内容,我认为它应该使横幅贴在底部而不是最佳。我做错了吗?
@edit这是我实际使用的代码: http://pastebin.com/6fN0fjRP