Extends the Chain class.
Tutorial/Demo
Injects pauses between chained events.
Syntax
myClass.wait(duration);
Arguments
- duration - (number) The duration (in milliseconds) to pause the chain stack; defaults to 500.
Example
new Fx.Tween('myElement', {
property: 'width',
link: 'chain'
}).start(0).wait(400).start(100);
Returns
- (object) - This instance of the class.
Extends the Element Type (if present) with methods to delay effect chains.
Sets the Element's "built in" effect instances (both Fx.Tween and Fx.Morph) link option to "chain".
Syntax
myElement.chains();
Returns
- (element) - This element.
Pauses a specified effect chain using Chain.wait.
Syntax
myElement.pauseFx([duration, effect]);
Arguments
- duration - (number) The duration (in milliseconds) to pause the chain stack; defaults to 500.
- effect - (string) Either "tween" or "morph" (defaults to "tween" so you only need specify it if it's morph).