What does this control do?
Displays visual effects that enhace user experience.
For an usage example check out our Meteora.Effect demo.
How to use
In order to be able to use this control, paste this line of javascript right
at the beginning of your script tag:
Meteora.uses('Meteora.Effect');
Here's a little example:
// Will make appear an object after fading it
Effect.fade(
'object-id',
{
'onComplete': function(el) {
Effect.appear(el);
}
}
);
Note that the new keyword is not necessary since all methods are static.