Sha256: ca29503388e6c1a0499f6010e29f3a3c290ef651da731a1c109b8ca1aab29417

Contents?: true

Size: 1.9 KB

Versions: 8

Compression:

Stored size: 1.9 KB

Contents

dojo.provide("dojox.fx.ext-dojo.NodeList");
dojo.experimental("dojox.fx.ext-dojo.NodeList");
// summary: Core extensions to dojo.NodeList providing addtional fx to dojo.NodeList-fx
// description:
//	A Package to extend dojo base NodeList with fx provided by the dojox.fx project.
//	These are experimental animations, in an experimental 

dojo.require("dojo.NodeList-fx");
dojo.require("dojox.fx");

dojo.extend(dojo.NodeList, {

	sizeTo: function(args){
		//	summary:
		//		size all elements of this NodeList. Returns an instance of dojo._Animation
		//	example:
		//	|	// size all divs with class "blah"
		//	|	dojo.query("div.blah").sizeTo({
		//	|		width:50,
		//	|		height:50
		//	|	}).play();
		return this._anim(dojox.fx, "sizeTo", args); // dojo._Animation
	},

	slideBy: function(args){
		//	summary:
		//		slide all elements of this NodeList. Returns an instance of dojo._Animation
		//		
		//	example:
		//	|	// slide all tables with class "blah" 10 px 
		//	|	dojo.query("table.blah").slideBy({ top:10, left:10 }).play();
		return this._anim(dojox.fx, "slideBy", args); // dojo._Animation
	},

	highlight: function(args){
		//	summary:
		//		highlight all elements of the node list.
		//		Returns an instance of dojo._Animation
		//	example:
		//	|	// highlight all links with class "foo" 
		//	|	dojo.query("a.foo").hightlight().play();
		return this._anim(dojox.fx, "highlight", args); // dojo._Animation
	},

	fadeTo: function(args){
		// 	summary:
		//		fade all elements of the node list to a specified opacity
		//	example:
		//	|	// fade all elements with class "bar" to to 50% opacity
		//	|	dojo.query(".bar").fadeTo({ end: 0.5 }).play();
		return this._anim(dojo,"_fade",args);
	},
	
	wipeTo: function(args){
		// summary:
		//		Wipe all elements of the NodeList to a specified width: or height:
		// example:
		//	| dojo.query(".box").wipeTo({ width: 300px }).play();
		return this._anim(dojox.fx, "wipeTo", args);
	}

});

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dojo-pkg-1.132.0 data/dojo-release-1.3.2-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.111.0 data/dojo-release-1.1.1-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.120.0 data/dojo-release-1.2.0-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.121.0 data/dojo-release-1.2.1-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.122.0 data/dojo-release-1.2.2-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.123.0 data/dojo-release-1.2.3-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.130.0 data/dojo-release-1.3.0-src/dojox/fx/ext-dojo/NodeList.js
dojo-pkg-1.131.0 data/dojo-release-1.3.1-src/dojox/fx/ext-dojo/NodeList.js