滚动到重复元素

时间:2013-07-12 16:06:33

标签: jquery scroll scrollto

我一直在使用ScrollTo脚本(jquery.scrollTo-1.4.3.1-min.js)顺利滚动到wordpress博客上的每个帖子。从更新版本的jQuery开始,此代码已停止运行。这是我最初找到代码的地方:http://webdesignerwall.com/tutorials/scrollto-posts-with-jquery

有没有人有建议或更好的方法来获得此功能?

这是一个小提琴,prevnext链接应该引出滚动到相邻的.post divs

http://jsfiddle.net/bTfKk/

1 个答案:

答案 0 :(得分:3)

它错过了缓和,所以当你删除它时它起作用。从:

$.scrollTo(scroll, {
     duration: 300, easing:'easeOutExpo'      
});

为:

$.scrollTo(scroll, {
     duration: 300
});

FIDDLE

或者您可以添加jQuery UI或仅添加easings libraryhttp://jsfiddle.net/bTfKk/2/