我使用了这个插件并去掉了一些不必要的代码,由于某些原因它在 FireFox 中不起作用。
原文来源:http ://djpate.com/2011/01/01/animated-scrollto-effect-jquery-plugin/
我的代码:
(function (a) {
a.fn.slideto = function (b) {
var c = {
slide_duration: "slow",
offset: 0
}, b = a.extend(c, b);
return this.each(function () {
var c = !1;
obj = a(this), a("body").animate({
scrollTop: obj.offset().top + b.offset
})
})
}
})($);
调用插件的代码:
$(document).ready(function(){
$("#scroll").click(function(){
$("#results").slideto();
});
});