1

我一直在使用ScrollTo脚本 ( jquery.scrollTo-1.4.3.1-min.js) 平滑滚动到 wordpress 博客上的每个帖子。由于 jQuery 的较新版本,此代码已停止工作。这是我最初找到代码的地方:http ://webdesignerwall.com/tutorials/scrollto-posts-with-jquery

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

这是一个小提琴,prev链接next应该引起滚动到相邻的.postdiv

http://jsfiddle.net/bTfKk/

4

1 回答 1

3

它缺少缓动,所以当你删除它们时它会起作用。从:

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

至:

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

小提琴

或者您可以添加 jQuery UI 或仅添加缓动:http: //jsfiddle.net/bTfKk/2/

于 2013-07-12T16:11:46.997 回答