dojo.NodeList.slideBy
dojo.require("dojox.fx.ext-dojo.NodeList");
defined in dojox/fx/ext-dojo/NodeList.js
slide all elements of this NodeList. Returns an instance of dojo._Animation
Usage
function (args) (view source)
parameter | type | description |
---|---|---|
args |
Examples
Example 1
// slide all tables with class "blah" 10 px
dojo.query("table.blah").slideBy({ top:10, left:10 }).play();