diff options
| author | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
|---|---|---|
| committer | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
| commit | b62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch) | |
| tree | 86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /js/dojo/dojox/widget/rotator/Fade.js | |
Diffstat (limited to 'js/dojo/dojox/widget/rotator/Fade.js')
| -rw-r--r-- | js/dojo/dojox/widget/rotator/Fade.js | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/js/dojo/dojox/widget/rotator/Fade.js b/js/dojo/dojox/widget/rotator/Fade.js new file mode 100644 index 0000000..26a9c03 --- /dev/null +++ b/js/dojo/dojox/widget/rotator/Fade.js @@ -0,0 +1,44 @@ +//>>built +// wrapped by build app +define("dojox/widget/rotator/Fade", ["dijit","dojo","dojox","dojo/require!dojo/fx"], function(dijit,dojo,dojox){ +dojo.provide("dojox.widget.rotator.Fade"); +dojo.require("dojo.fx"); + +(function(d){ + + function _fade(/*Object*/args, /*string*/action){ + // summary: + // Returns an animation of a fade out and fade in of the current and next + // panes. It will either chain (fade) or combine (crossFade) the fade + // animations. + var n = args.next.node; + d.style(n, { + display: "", + opacity: 0 + }); + + args.node = args.current.node; + + return d.fx[action]([ /*dojo.Animation*/ + d.fadeOut(args), + d.fadeIn(d.mixin(args, { node: n })) + ]); + } + + d.mixin(dojox.widget.rotator, { + fade: function(/*Object*/args){ + // summary: + // Returns a dojo.Animation that fades out the current pane, then fades in + // the next pane. + return _fade(args, "chain"); /*dojo.Animation*/ + }, + + crossFade: function(/*Object*/args){ + // summary: + // Returns a dojo.Animation that cross fades two rotator panes. + return _fade(args, "combine"); /*dojo.Animation*/ + } + }); + +})(dojo); +}); |
