Functiondojo.fx.combine

dojo.require("dojo.fx");
defined in dojo/fx.js

Combine a list of dojo._Animation s to run in parallel

Usage

function (animations) (view source)
parametertypedescription
animations  

Examples

Example 1

dojo.fx.combine([
    dojo.fadeIn({ node:node }),
    dojo.fadeOut({ node:otherNode })
]).play();