我是原型的新手。如何在 Prototype 中编写以下 jQuery 代码?提前致谢..
$('#lessonid').fadeIn(function(){
$('.exercise').css('margin-bottom', '0px');
});
我是原型的新手。如何在 Prototype 中编写以下 jQuery 代码?提前致谢..
$('#lessonid').fadeIn(function(){
$('.exercise').css('margin-bottom', '0px');
});
据我所知,PrototypeJS 库没有内置任何动画/效果方法。您可以使用Scriptaculous,它是 Prototype 的附加组件。这将允许您使用以下fade
方法执行以下操作:
$('lessonid').fade({
from: 0,
to: 1,
afterFinish: function() {
$$('.exercise').setStyle({
marginBottom: 0
});
}
});