在jquery
中找到相应的代码很麻烦var reveal = new Fx.Styles(div, {
duration: 200,
transition: Fx.Transitions.Quad.easeIn,
wait: true,
fps: 24
});
reveal.addEvent('onStart', function(){
tt_has(true);
});
答案 0 :(得分:0)
我认为它会变成:
$(div).animate( {left: 500, top: 500}, 200, 'linear');
tt_has(true);
jquery动画中没有“开始”事件(它们会自动启动),因此我们在调用tt_has(true)
后立即致电.animate()
,
更多信息here。
希望这会有所帮助。干杯