Fx.Visual
Before proceeding you may want to read our getting started page.
What does this control do?
Displays visual effects that enhace user experience.
For an usage example check out our Fx.Visual 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('Fx.Visual');
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.