我正在使用以下函数创建滚动动画来锚定链接:
$('a').click(function(){
$('html, body').animate(
{scrollTop: $( $.attr(this, 'href') ).offset().top},
500 );
return false;
});
我想添加缓动。但是,当我在“500”之后添加“缓动”时,它会破坏脚本:
$('a').click(function(){
$('html, body').animate(
{scrollTop: $( $.attr(this, 'href') ).offset().top},
500, easing );
return false;
});
任何想法我做错了什么?