Function
Animate the effects of adding a class to all nodes in this list. see `dojox.fx.addClass`
dojo.Animation
// fade all elements with class "bar" to to 50% opacity dojo.query(".bar").addClassFx("bar").play();
Function
Animate the effect of removing a class to all nodes in this list. see `dojox.fx.removeClass`
dojo.Animation
dojo.query(".box").removeClassFx("bar").play();
Function
Animate the effect of adding or removing a class to all nodes in this list. see `dojox.fx.toggleClass`
dojo.Animation
dojo.query(".box").toggleClass("bar").play();
Object
Object
Object
Object