带有缓动和回调函数的scrollTo
到目前为止,这是我的代码:
$('.my_button').click(function() {
$.scrollTo( '#my_anchor', 1200, {easing:'easeInOutExpo'}, function() {
// function not working here
});
});
回调函数以前可以工作,但自从我更改为带有缓动的scrollTo方法后,它就不再工作了!
只是为了说清楚,我只需要知道如何让我的回调函数再次工作,其他一切都很好。
Here is my code thus far:
$('.my_button').click(function() {
$.scrollTo( '#my_anchor', 1200, {easing:'easeInOutExpo'}, function() {
// function not working here
});
});
The callback function worked previously, but since I changed to the scrollTo method with easing, it doesn't any more!
Just to make it clear I only need to know how to get my callback function working again, everything else is fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有第四个参数,但第三个参数(settings)接受
来自源代码的 onAfter 回调:
There is no forth parameter, but the third parameter (settings) accepts an onAfter callback
from the source code on settings: