Functiondojo.NodeList.animateProperty

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

see dojo.animateProperty(). Animate all elements of this NodeList across the properties specified.

Usage

function (args) (view source)
parametertypedescription
args  

Examples

Example 1

dojo.query(".zork").animateProperty({
    duration: 500,
    properties: {
        color:      { start: "black", end: "white" },
        left:       { end: 300 }
    }
}).play();