Hi folks,
I am trying to toggle animations. It works nice with dojo.fadeIn/dojo.fadeOut and dojo.fx.wipe/dojo.fx.wipeOut. But now I want to fade to a certain opacity only. I'm trying to use dojo.animateProperty to do so, but I don't know how to pass the properties.
The closest I got so far was this:
node: id,
showDuration: 500,
hideDuration: 500,
showFunc: dojo.animateProperty,
hideFunc: dojo.animateProperty,
properties: {opacity:0.5}
});
