RegisterEffect 注册的效果可以使用loop选项吗?
$.Velocity.RegisterEffect('rxj.float.game',{
calls:[
[{left:600},0.5],
[{left:0},0.5]
]
});
$('#my').velocity('rxj.float.game',{duration:1000,loop:true});
上面设置loop效果没有循环效果,下面的有效果:
$('#my').velocity({left:600},{duration:1000,loop:true});
请问在自定义动画里面设置loop循环