Adds dojo.fx animation support to dojo.query() by extending the NodeList class with additional FX functions. NodeList is the array-like object used to hold query results.
();
See the dojo/NodeList-fx reference documentation for more information.
fadeTo
(args)
Defined by dojox/fx/ext-dojo/NodeList
fade all elements of the node list to a specified opacity
Parameter | Type | Description |
---|---|---|
args | undefined |
Returns: undefined
// fade all elements with class "bar" to to 50% opacity
dojo.query(".bar").fadeTo({ end: 0.5 }).play();
highlight
(args)
Defined by dojox/fx/ext-dojo/NodeList
highlight all elements of the node list. Returns an instance of dojo.Animation
Parameter | Type | Description |
---|---|---|
args | undefined |
Returns: undefined
// highlight all links with class "foo"
dojo.query("a.foo").hightlight().play();
sizeTo
(args)
Defined by dojox/fx/ext-dojo/NodeList
size all elements of this NodeList. Returns an instance of dojo.Animation
Parameter | Type | Description |
---|---|---|
args | undefined |
Returns: undefined
// size all divs with class "blah"
dojo.query("div.blah").sizeTo({
width:50,
height:50
}).play();
slideBy
(args)
Defined by dojox/fx/ext-dojo/NodeList
slide all elements of this NodeList. Returns an instance of dojo.Animation
Parameter | Type | Description |
---|---|---|
args | undefined |
Returns: undefined
// slide all tables with class "blah" 10 px
dojo.query("table.blah").slideBy({ top:10, left:10 }).play();
wipeTo
(args)
Defined by dojox/fx/ext-dojo/NodeList
Wipe all elements of the NodeList to a specified width: or height:
Parameter | Type | Description |
---|---|---|
args | undefined |
Returns: undefined
dojo.query(".box").wipeTo({ width: 300px }).play();
© 2005–2017 JS Foundation
Licensed under the AFL 2.1 and BSD 3-Clause licenses.
http://dojotoolkit.org/api/1.10/dojo/NodeList-fx.html