Mootools Tween问题

时间:2010-01-09 16:39:45

标签: mootools

从未使用过mootools并拥有此代码。而不仅仅是注入内容而没有效果,我希望它能够淡入但无法弄清楚如何添加淡入淡出('in')并使其有效。

        onSuccess: function(text, xml) {
            new Element('div', {
                'html': text
            }).inject($(object), 'after');
            $(object).destroy();
        }

1 个答案:

答案 0 :(得分:0)

onSuccess: function(text, xml) {
    new Element('div', {
        'html': text,
        'styles': {
            'opacity': 0
        }
    }).inject($(object), 'after').fade('in');
    $(object).destroy();
}