a:14:{s:9:"#provides";s:16:"dojo.NodeList-fx";s:9:"#resource";s:14:"NodeList-fx.js";s:9:"#requires";a:1:{i:0;a:2:{i:0;s:6:"common";i:1;s:7:"dojo.fx";}}s:19:"dojo.NodeList._anim";a:6:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:3:{s:3:"obj";a:1:{s:4:"type";s:0:"";}s:6:"method";a:1:{s:4:"type";s:0:"";}s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:200:" args = args||{}; return dojo.fx.combine( this.map(function(item){ var tmpArgs = { node: item }; dojo.mixin(tmpArgs, args); return obj[method](tmpArgs); }) ); // dojo._Animation";s:7:"private";b:1;s:7:"summary";s:0:"";}s:20:"dojo.NodeList.wipeIn";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:64:" return this._anim(dojo.fx, "wipeIn", args); // dojo._Animation";s:7:"summary";s:77:"wipe in all elements of this NodeList. Returns an instance of dojo._Animation";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:1:{i:0;s:81:"Fade in all tables with class "blah": dojo.query("table.blah").wipeIn().play();";}}s:21:"dojo.NodeList.wipeOut";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:65:" return this._anim(dojo.fx, "wipeOut", args); // dojo._Animation";s:7:"summary";s:78:"wipe out all elements of this NodeList. Returns an instance of dojo._Animation";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:1:{i:0;s:83:"Wipe out all tables with class "blah": dojo.query("table.blah").wipeOut().play();";}}s:21:"dojo.NodeList.slideTo";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:65:" return this._anim(dojo.fx, "slideTo", args); // dojo._Animation";s:7:"summary";s:98:"slide all elements of the node list to the specified place. Returns an instance of dojo._Animation";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:1:{i:0;s:118:" Move all tables with class "blah" to 300/300: dojo.query("table.blah").slideTo({ left: 40, top: 50 }).play();";}}s:20:"dojo.NodeList.fadeIn";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:61:" return this._anim(dojo, "fadeIn", args); // dojo._Animation";s:7:"summary";s:77:"fade in all elements of this NodeList. Returns an instance of dojo._Animation";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:1:{i:0;s:81:"Fade in all tables with class "blah": dojo.query("table.blah").fadeIn().play();";}}s:21:"dojo.NodeList.fadeOut";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:62:" return this._anim(dojo, "fadeOut", args); // dojo._Animation";s:7:"summary";s:78:"fade out all elements of this NodeList. Returns an instance of dojo._Animation";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:2:{i:0;s:80:"Fade out all elements with class "zork": dojo.query(".zork").fadeOut().play();";i:1;s:154:"Fade them on a delay and do something at the end: var fo = dojo.query(".zork").fadeOut(); dojo.connect(fo, "onEnd", function(){ /*...*/ }); fo.play();";}}s:29:"dojo.NodeList.animateProperty";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"args";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:70:" return this._anim(dojo, "animateProperty", args); // dojo._Animation";s:7:"summary";s:98:"see dojo.animateProperty(). Animate all elements of this NodeList across the properties specified.";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:1:{i:0;s:157:" dojo.query(".zork").animateProperty({ duration: 500, properties: { color: { start: "black", end: "white" }, left: { end: 300 } } }).play();";}}s:18:"dojo.NodeList.anim";a:7:{s:9:"prototype";s:13:"dojo.NodeList";s:4:"type";s:8:"Function";s:10:"parameters";a:5:{s:10:"properties";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:25:"the properties to animate";}s:8:"duration";a:3:{s:8:"optional";b:1;s:4:"type";s:7:"Integer";s:7:"summary";s:44:"Optional. The time to run the animations for";}s:6:"easing";a:3:{s:8:"optional";b:1;s:4:"type";s:8:"Function";s:7:"summary";s:37:"Optional. The easing function to use.";}s:5:"onEnd";a:3:{s:8:"optional";b:1;s:4:"type";s:8:"Function";s:7:"summary";s:47:"A function to be called when the animation ends";}s:5:"delay";a:3:{s:8:"optional";b:1;s:4:"type";s:7:"Integer";s:7:"summary";s:48:"how long to delay playing the returned animation";}}s:6:"source";s:315:" var canim = dojo.fx.combine( this.map(function(item){ return dojo.animateProperty({ node: item, properties: properties, duration: duration||350, easing: easing }); }) ); if(onEnd){ dojo.connect(canim, "onEnd", onEnd); } return canim.play(delay||0); // dojo._Animation";s:7:"summary";s:184:"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.";s:7:"returns";s:15:"dojo._Animation";s:8:"examples";a:2:{i:0;s:71:"Another way to fade out: dojo.query(".thinger").anim({ opacity: 0 });";i:1;s:141:"animate all elements with the "thigner" class to a width of 500 pixels over half a second dojo.query(".thinger").anim({ width: 500 }, 700);";}}s:7:"tmpArgs";a:2:{s:6:"mixins";a:1:{s:6:"normal";a:1:{i:0;s:4:"args";}}s:7:"summary";s:0:"";}s:16:"dojo.NodeList-fx";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}s:4:"dojo";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}}