Function
dojo.Animation|dojo.NodeList
Function
Additional dojo.Animation arguments to mix into this set with the addition of an `auto` parameter.
wipe in all elements of this NodeList via `dojo.fx.wipeIn`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
Fade in all tables with class "blah": dojo.query("table.blah").wipeIn().play();
Utilizing `auto` to get the NodeList back: dojo.query(".titles").wipeIn({ auto:true }).onclick(someFunction);
Function
Additional dojo.Animation arguments to mix into this set with the addition of an `auto` parameter.
wipe out all elements of this NodeList via `dojo.fx.wipeOut`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
Wipe out all tables with class "blah": dojo.query("table.blah").wipeOut().play();
Function
Additional dojo.Animation arguments to mix into this set with the addition of an `auto` parameter.
slide all elements of the node list to the specified place via `dojo.fx.slideTo`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
Move all tables with class "blah" to 300/300: dojo.query("table.blah").slideTo({ left: 40, top: 50 }).play();
Function
Additional dojo.Animation arguments to mix into this set with the addition of an `auto` parameter.
fade in all elements of this NodeList via `dojo.fadeIn`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
Fade in all tables with class "blah": dojo.query("table.blah").fadeIn().play();
Function
Additional dojo.Animation arguments to mix into this set with the addition of an `auto` parameter.
fade out all elements of this NodeList via `dojo.fadeOut`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
Fade out all elements with class "zork": dojo.query(".zork").fadeOut().play();
Fade them on a delay and do something at the end: var fo = dojo.query(".zork").fadeOut(); dojo.connect(fo, "onEnd", function(){ /*...*/ }); fo.play();
Using `auto`: dojo.query("li").fadeOut({ auto:true }).filter(filterFn).forEach(doit);
Function
Animate all elements of this NodeList across the properties specified. syntax identical to `dojo.animateProperty`
dojo.Animation|dojo.NodeList A special args member `auto` can be passed to automatically play the animation. If args.auto is present, the original dojo.NodeList will be returned for further chaining. Otherwise the dojo.Animation instance is returned and must be .play()'ed
dojo.Animation|dojo.NodeList
dojo.query(".zork").animateProperty({ duration: 500, properties: { color: { start: "black", end: "white" }, left: { end: 300 } } }).play();
dojo.query(".grue").animateProperty({ auto:true, properties: { height:240 } }).onclick(handler);
Function
the properties to animate. does NOT support the `auto` parameter like other NodeList-fx methods.
Optional. The time to run the animations for
Optional. The easing function to use.
A function to be called when the animation ends
how long to delay playing the returned animation
Animate one or more CSS properties for all nodes in this list. The returned animation object will already be playing when it is returned. See the docs for `dojo.anim` for full details.
dojo.Animation
Another way to fade out: dojo.query(".thinger").anim({ opacity: 0 });
animate all elements with the "thigner" class to a width of 500 pixels over half a second dojo.query(".thinger").anim({ width: 500 }, 700);
Object
Object