I want to wipe in with object that define style with display: none;
:
dojo.fx.wipeIn({
node: dojo.byId("target"),
duration: 500
}).play();
but the animation could not play. what is problem?
i use this for showing the display properties but still showing nothing. The alert message is empty.
dojo.fx.wipeIn({
node: dojo.byId("target"),
duration: 500,
beforeBegin: function(){
alert(dojo.byId("target").style.display);
},
onEnd: function() {
alert(dojo.byId("target").style.display);
}
}).play();