1

我是原型的新手。如何在 Prototype 中编写以下 jQuery 代码?提前致谢..

$('#lessonid').fadeIn(function(){
   $('.exercise').css('margin-bottom', '0px');        
});
4

1 回答 1

3

据我所知,PrototypeJS 库没有内置任何动画/效果方法。您可以使用Scriptaculous,它是 Prototype 的附加组件。这将允许您使用以下fade方法执行以下操作:

$('lessonid').fade({
    from: 0, 
    to: 1,
    afterFinish: function() {
        $$('.exercise').setStyle({
            marginBottom: 0
        });
    }
});
于 2012-05-30T11:35:30.273 回答