标签: javascript mootools effects
有没有办法为MooTools效果设置一些默认属性,如持续时间或过渡?
这样可以更轻松地将element.tween();或element.reveal()等所有效果统一起来。
element.tween();
element.reveal()
答案 0 :(得分:6)
您可以使用implement()覆盖默认值。
Fx.implement({options: {duration: 600}})