mootools“fx.styles”和“addevent”等同于jquery

时间:2011-07-05 03:59:33

标签: javascript jquery mootools

在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);
});

1 个答案:

答案 0 :(得分:0)

我认为它会变成:

$(div).animate( {left: 500, top: 500}, 200, 'linear');
tt_has(true);

jquery动画中没有“开始”事件(它们会自动启动),因此我们在调用tt_has(true)后立即致电.animate()

更多信息here

希望这会有所帮助。干杯