Hi,

Is there an efficient way (maybe global way)  to add a visual effect when
widgets resize?

window.setHeight( 60 );
window.setHeight( 260 ); // expand to this size slowly rather than
instantaneously.

Or do I have to implement an animation for every widget resize event:

var desc = {duration: 1000, timing: "ease-out", keyFrames : {
  0 : {"width" : "30px"},
  70 : {"width" : "100px"},
  100 : {"width": "30px"}}};var box =
document.getElementById("box");qx.bom.element.Animation.animate(box,
desc);


Thanks!
Jonathan
------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to