标签: javascript html mootools transitions
我正在使用Mootools手风琴进行项目,并希望加快过渡。有谁知道一个简单的方法吗?
答案 0 :(得分:3)
它是从mootools Fx类继承的duration选项。因此,您的初始化程序可能如下所示:
duration
var myAccordion = new Fx.Accordion(togglers, elements, { duration: 250 });
http://mootools.net/docs/more/Fx/Fx.Accordion
http://mootools.net/docs/core/Fx/Fx