diff options
Diffstat (limited to 'js/dojo-1.6/dojox/widget/rotator/Slide.xd.js')
| -rw-r--r-- | js/dojo-1.6/dojox/widget/rotator/Slide.xd.js | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/js/dojo-1.6/dojox/widget/rotator/Slide.xd.js b/js/dojo-1.6/dojox/widget/rotator/Slide.xd.js new file mode 100644 index 0000000..306184d --- /dev/null +++ b/js/dojo-1.6/dojox/widget/rotator/Slide.xd.js @@ -0,0 +1,76 @@ +/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.widget.rotator.Slide"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.widget.rotator.Slide"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.widget.rotator.Slide"] = true;
+dojo.provide("dojox.widget.rotator.Slide");
+
+(function(d){
+
+ // Constants used to identify which edge the pane slides in from.
+ var DOWN = 0,
+ RIGHT = 1,
+ UP = 2,
+ LEFT = 3;
+
+ function _slide(/*int*/type, /*Object*/args){
+ // summary:
+ // Handles the preparation of the dom node and creates the dojo.Animation object.
+ var node = args.node = args.next.node,
+ r = args.rotatorBox,
+ m = type % 2,
+ s = (m ? r.w : r.h) * (type < 2 ? -1 : 1);
+
+ d.style(node, {
+ display: "",
+ zIndex: (d.style(args.current.node, "zIndex") || 1) + 1
+ });
+
+ if(!args.properties){
+ args.properties = {};
+ }
+ args.properties[m ? "left" : "top"] = {
+ start: s,
+ end: 0
+ };
+
+ return d.animateProperty(args); /*dojo.Animation*/
+ }
+
+ d.mixin(dojox.widget.rotator, {
+ slideDown: function(/*Object*/args){
+ // summary:
+ // Returns a dojo.Animation that slides in the next rotator pane from the top.
+ return _slide(DOWN, args); /*dojo.Animation*/
+ },
+
+ slideRight: function(/*Object*/args){
+ // summary:
+ // Returns a dojo.Animation that slides in the next rotator pane from the right.
+ return _slide(RIGHT, args); /*dojo.Animation*/
+ },
+
+ slideUp: function(/*Object*/args){
+ // summary:
+ // Returns a dojo.Animation that slides in the next rotator pane from the bottom.
+ return _slide(UP, args); /*dojo.Animation*/
+ },
+
+ slideLeft: function(/*Object*/args){
+ // summary:
+ // Returns a dojo.Animation that slides in the next rotator pane from the left.
+ return _slide(LEFT, args); /*dojo.Animation*/
+ }
+ });
+
+})(dojo);
+
+}
+
+}};});
|
