gpt4 book ai didi

PrototypeJS 中的 jQuery fadeIn 函数

转载 作者:行者123 更新时间:2023-12-01 08:15:45 26 4
gpt4 key购买 nike

我是原型(prototype)新手。如何在 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
});
}
});

关于PrototypeJS 中的 jQuery fadeIn 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10815334/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com