我正在尝试滚动到特定的ID
:
$("#button1").click(function() {
$('html, body').animate({
scrollTop: $("#Sec1").offset().top
}, 700);
它工作正常。
我的问题是:
我如何通过缓动功能做同样的事情?
我尝试了以下功能但不起作用:
$("#button1").click(function() {
$('html, body').animate({
scrollTop: $("#Sec1").offset().top
}, 700, "easeInOutCirc");
任何建议将不胜感激。