ScrollToFixed滚动问题

时间:2013-04-12 15:38:48

标签: jquery css scrollto sidebar

我的scrollToFixed脚本有问题。 https://github.com/bigspotteddog/ScrollToFixed 这是一个案例:http://dash.com.pl/CTP/gallery.html 这个脚本工作正常,但当我向下滚动并向上滚动后,出现一个洞。

这是一个给出限制的脚本:

$(document).ready(function() {
$('.sidebar').scrollToFixed({
    marginTop: 0,
    limit: $('.footer').offset().top - $('.sidebar').height() - 20
});
});

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

确定。这是一个很酷很酷的插件。我想我找到了解决方案。

您可以使用div进行包装,如下所示。

<强> HTML

<div id="sidebar-wrapper">
 <aside class="sidebar"></aside>
</div>

然后添加css以浮动div,

<强> CSS

div#sidebar-wrapper{
 float:right;
}

这必须工作!试试这个,让我知道。