考虑这个fiddle。
function transfer() {
source.effect('transfer', { to: target }, 2000);
}
setInterval(transfer, 500);
正如您所看到的那样,转移是串联运行的 你如何让它们同时运行?
答案 0 :(得分:1)
jQuery动画队列。如果您查看documentation for .animate()
,您会看到有一个queue
选项可以禁用此行为。您也可以将此与jQuery UI的.effect()
方法一起使用。请查看this fiddle以获取示例。
我filed an issue要在.effect()
documentation中记录此内容。