私はこのプラグインを使用して、いくつかの不要なコードを取り除きました。いくつかの理由で、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();
});
});