Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 jquery ui 中有弹跳效果。在反弹过程中会发生颜色变化,有什么办法可以在反弹完成后立即将颜色恢复正常?
$(div).effect("bounce", { times:2 }, 200);
jQuery 中是否有与动画或效果相关的事件处理程序?
效果文档显示它的调用如下:
effect( effect, [options], [speed], [callback] )
因此,您可以简单地将函数传递给callback参数,一旦效果完成,该函数就会运行。
callback