- The Book of Dojo
- The Dojo Book, 0.4
- Part 1: "Introduction"
- Part 2: "Out of the Box" Dojo
- Part 3: "The Dojo Programming Model"
- Part 4: "More on Widgets"
- Part 5: "Connecting the pieces"
- Part 6: "Customizing Dojo Builds for Better Performance"
- Part 7: "Utilities"
- Part 8: "Internationalization and Accessiblity"
- Part 9: "Dojo Community"
- Part 10: "Fresh From The Shed" Dojo
- BookWriting
- Glossary
LFX
Submitted by bill on Thu, 08/10/2006 - 10:50.
The dojo.lfx.* module is dojo's animation system. It includes many “canned� effects:
- fadeIn, fadeShow, fadeOut, fadeHide,
- wipeIn, wipeOut
- slideTo
- explode, implode
- highlight, unhighlight
// wipe two elements out, one after
// the other, following a 300ms delayvar anim1 = dojo.lfx.wipeOut(�foo�, 300);
var anim2 = dojo.lfx.wipeOut(�bar�, 500);
var composed = dojo.lfx.chain(anim1, anim2);
composed.play(300);// fade out three nodes together, using
// accelerationdojo.lfx.fadeOut(
[�foo�, “bar�, “baz�],
300,
dojo.lfx.easeInOut
).play();
