dojo.fx.chain
dojo.require("dojo.fx");
defined in dojo/fx.js
Chain a list of dojo._Animation s to run in sequence
Usage
function (animations) (view source)
parameter | type | description |
---|---|---|
animations |
Examples
Example 1
dojo.fx.chain([
dojo.fadeIn({ node:node }),
dojo.fadeOut({ node:otherNode })
]).play();