Fx.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:39k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ (function(){
  2.     // contants
  3.     var NULL = null,
  4.         UNDEFINED = undefined,
  5.         TRUE = true,
  6.         FALSE = false,
  7.         SETX = "setX",
  8.         SETY = "setY",
  9.         SETXY = "setXY",
  10.         LEFT = "left",
  11.         BOTTOM = "bottom",
  12.         TOP = "top",
  13.         RIGHT = "right",
  14.         HEIGHT = "height",
  15.         WIDTH = "width",
  16.         POINTS = "points",
  17.         HIDDEN = "hidden",
  18.         ABSOLUTE = "absolute",
  19.         VISIBLE = "visible",
  20.         MOTION = "motion",
  21.         POSITION = "position",
  22.         EASEOUT = "easeOut",
  23.         /*
  24.          * Use a light flyweight here since we are using so many callbacks and are always assured a DOM element
  25.          */
  26.         flyEl = new Ext.Element.Flyweight(),
  27.         queues = {},
  28.         getObject = function(o){
  29.             return o || {};
  30.         },
  31.         fly = function(dom){
  32.             flyEl.dom = dom;
  33.             flyEl.id = Ext.id(dom);
  34.             return flyEl;
  35.         },
  36.         /*
  37.          * Queueing now stored outside of the element due to closure issues
  38.          */
  39.         getQueue = function(id){
  40.             if(!queues[id]){
  41.                 queues[id] = [];
  42.             }
  43.             return queues[id];
  44.         },
  45.         setQueue = function(id, value){
  46.             queues[id] = value;
  47.         };
  48.         
  49. //Notifies Element that fx methods are available
  50. Ext.enableFx = TRUE;
  51. /**
  52.  * @class Ext.Fx
  53.  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
  54.  * to the {@link Ext.Element} interface when included, so all effects calls should be performed via {@link Ext.Element}.
  55.  * Conversely, since the effects are not actually defined in {@link Ext.Element}, Ext.Fx <b>must</b> be
  56.  * {@link Ext#enableFx included} in order for the Element effects to work.</p><br/>
  57.  * 
  58.  * <p><b><u>Method Chaining</u></b></p>
  59.  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
  60.  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
  61.  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
  62.  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
  63.  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
  64.  * expected results and should be done with care.  Also see <tt>{@link #callback}</tt>.</p><br/>
  65.  *
  66.  * <p><b><u>Anchor Options for Motion Effects</u></b></p>
  67.  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
  68.  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
  69. <pre>
  70. Value  Description
  71. -----  -----------------------------
  72. tl     The top left corner
  73. t      The center of the top edge
  74. tr     The top right corner
  75. l      The center of the left edge
  76. r      The center of the right edge
  77. bl     The bottom left corner
  78. b      The center of the bottom edge
  79. br     The bottom right corner
  80. </pre>
  81.  * <b>Note</b>: some Fx methods accept specific custom config parameters.  The options shown in the Config Options
  82.  * section below are common options that can be passed to any Fx method unless otherwise noted.</b>
  83.  * 
  84.  * @cfg {Function} callback A function called when the effect is finished.  Note that effects are queued internally by the
  85.  * Fx class, so a callback is not required to specify another effect -- effects can simply be chained together
  86.  * and called in sequence (see note for <b><u>Method Chaining</u></b> above), for example:<pre><code>
  87.  * el.slideIn().highlight();
  88.  * </code></pre>
  89.  * The callback is intended for any additional code that should run once a particular effect has completed. The Element
  90.  * being operated upon is passed as the first parameter.
  91.  * 
  92.  * @cfg {Object} scope The scope of the <tt>{@link #callback}</tt> function
  93.  * 
  94.  * @cfg {String} easing A valid Ext.lib.Easing value for the effect:</p><div class="mdetail-params"><ul>
  95.  * <li><b><tt>backBoth</tt></b></li>
  96.  * <li><b><tt>backIn</tt></b></li>
  97.  * <li><b><tt>backOut</tt></b></li>
  98.  * <li><b><tt>bounceBoth</tt></b></li>
  99.  * <li><b><tt>bounceIn</tt></b></li>
  100.  * <li><b><tt>bounceOut</tt></b></li>
  101.  * <li><b><tt>easeBoth</tt></b></li>
  102.  * <li><b><tt>easeBothStrong</tt></b></li>
  103.  * <li><b><tt>easeIn</tt></b></li>
  104.  * <li><b><tt>easeInStrong</tt></b></li>
  105.  * <li><b><tt>easeNone</tt></b></li>
  106.  * <li><b><tt>easeOut</tt></b></li>
  107.  * <li><b><tt>easeOutStrong</tt></b></li>
  108.  * <li><b><tt>elasticBoth</tt></b></li>
  109.  * <li><b><tt>elasticIn</tt></b></li>
  110.  * <li><b><tt>elasticOut</tt></b></li>
  111.  * </ul></div>
  112.  *
  113.  * @cfg {String} afterCls A css class to apply after the effect
  114.  * @cfg {Number} duration The length of time (in seconds) that the effect should last
  115.  * 
  116.  * @cfg {Number} endOpacity Only applicable for {@link #fadeIn} or {@link #fadeOut}, a number between
  117.  * <tt>0</tt> and <tt>1</tt> inclusive to configure the ending opacity value.
  118.  *  
  119.  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
  120.  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
  121.  * effects that end with the element being visually hidden, ignored otherwise)
  122.  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. <tt>"width:100px"</tt>, or an object
  123.  * in the form <tt>{width:"100px"}</tt>, or a function which returns such a specification that will be applied to the
  124.  * Element after the effect finishes.
  125.  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
  126.  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
  127.  * @cfg {Boolean} stopFx Whether preceding effects should be stopped and removed before running current effect (only applies to non blocking effects)
  128.  */
  129. Ext.Fx = {
  130.     
  131.     // private - calls the function taking arguments from the argHash based on the key.  Returns the return value of the function.
  132.     //           this is useful for replacing switch statements (for example).
  133.     switchStatements : function(key, fn, argHash){
  134.         return fn.apply(this, argHash[key]);
  135.     },
  136.     
  137.     /**
  138.      * Slides the element into view.  An anchor point can be optionally passed to set the point of
  139.      * origin for the slide effect.  This function automatically handles wrapping the element with
  140.      * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
  141.      * Usage:
  142.      *<pre><code>
  143. // default: slide the element in from the top
  144. el.slideIn();
  145. // custom: slide the element in from the right with a 2-second duration
  146. el.slideIn('r', { duration: 2 });
  147. // common config options shown with default values
  148. el.slideIn('t', {
  149.     easing: 'easeOut',
  150.     duration: .5
  151. });
  152. </code></pre>
  153.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
  154.      * @param {Object} options (optional) Object literal with any of the Fx config options
  155.      * @return {Ext.Element} The Element
  156.      */
  157.     slideIn : function(anchor, o){ 
  158.         o = getObject(o);
  159.         var me = this,
  160.             dom = me.dom,
  161.             st = dom.style,
  162.             xy,
  163.             r,
  164.             b,              
  165.             wrap,               
  166.             after,
  167.             st,
  168.             args, 
  169.             pt,
  170.             bw,
  171.             bh;
  172.             
  173.         anchor = anchor || "t";
  174.         me.queueFx(o, function(){            
  175.             xy = fly(dom).getXY();
  176.             // fix display to visibility
  177.             fly(dom).fixDisplay();            
  178.             
  179.             // restore values after effect
  180.             r = fly(dom).getFxRestore();      
  181.             b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight};
  182.             b.right = b.x + b.width;
  183.             b.bottom = b.y + b.height;
  184.             
  185.             // fixed size for slide
  186.             fly(dom).setWidth(b.width).setHeight(b.height);            
  187.             
  188.             // wrap if needed
  189.             wrap = fly(dom).fxWrap(r.pos, o, HIDDEN);
  190.             
  191.             st.visibility = VISIBLE;
  192.             st.position = ABSOLUTE;
  193.             
  194.             // clear out temp styles after slide and unwrap
  195.             function after(){
  196.                  fly(dom).fxUnwrap(wrap, r.pos, o);
  197.                  st.width = r.width;
  198.                  st.height = r.height;
  199.                  fly(dom).afterFx(o);
  200.             }
  201.             
  202.             // time to calculate the positions        
  203.             pt = {to: [b.x, b.y]}; 
  204.             bw = {to: b.width};
  205.             bh = {to: b.height};
  206.                 
  207.             function argCalc(wrap, style, ww, wh, sXY, sXYval, s1, s2, w, h, p){                    
  208.                 var ret = {};
  209.                 fly(wrap).setWidth(ww).setHeight(wh);
  210.                 if(fly(wrap)[sXY]){
  211.                     fly(wrap)[sXY](sXYval);                  
  212.                 }
  213.                 style[s1] = style[s2] = "0";                    
  214.                 if(w){
  215.                     ret.width = w
  216.                 };
  217.                 if(h){
  218.                     ret.height = h;
  219.                 }
  220.                 if(p){
  221.                     ret.points = p;
  222.                 }
  223.                 return ret;
  224.             };
  225.             args = fly(dom).switchStatements(anchor.toLowerCase(), argCalc, {
  226.                     t  : [wrap, st, b.width, 0, NULL, NULL, LEFT, BOTTOM, NULL, bh, NULL],
  227.                     l  : [wrap, st, 0, b.height, NULL, NULL, RIGHT, TOP, bw, NULL, NULL],
  228.                     r  : [wrap, st, b.width, b.height, SETX, b.right, LEFT, TOP, NULL, NULL, pt],
  229.                     b  : [wrap, st, b.width, b.height, SETY, b.bottom, LEFT, TOP, NULL, bh, pt],
  230.                     tl : [wrap, st, 0, 0, NULL, NULL, RIGHT, BOTTOM, bw, bh, pt],
  231.                     bl : [wrap, st, 0, 0, SETY, b.y + b.height, RIGHT, TOP, bw, bh, pt],
  232.                     br : [wrap, st, 0, 0, SETXY, [b.right, b.bottom], LEFT, TOP, bw, bh, pt],
  233.                     tr : [wrap, st, 0, 0, SETX, b.x + b.width, LEFT, BOTTOM, bw, bh, pt]
  234.                 });
  235.             
  236.             st.visibility = VISIBLE;
  237.             fly(wrap).show();
  238.             arguments.callee.anim = fly(wrap).fxanim(args,
  239.                 o,
  240.                 MOTION,
  241.                 .5,
  242.                 EASEOUT, 
  243.                 after);
  244.         });
  245.         return me;
  246.     },
  247.     
  248.     /**
  249.      * Slides the element out of view.  An anchor point can be optionally passed to set the end point
  250.      * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
  251.      * 'hidden') but block elements will still take up space in the document.  The element must be removed
  252.      * from the DOM using the 'remove' config option if desired.  This function automatically handles 
  253.      * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
  254.      * Usage:
  255.      *<pre><code>
  256. // default: slide the element out to the top
  257. el.slideOut();
  258. // custom: slide the element out to the right with a 2-second duration
  259. el.slideOut('r', { duration: 2 });
  260. // common config options shown with default values
  261. el.slideOut('t', {
  262.     easing: 'easeOut',
  263.     duration: .5,
  264.     remove: false,
  265.     useDisplay: false
  266. });
  267. </code></pre>
  268.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
  269.      * @param {Object} options (optional) Object literal with any of the Fx config options
  270.      * @return {Ext.Element} The Element
  271.      */
  272.     slideOut : function(anchor, o){
  273.         o = getObject(o);
  274.         var me = this,
  275.             dom = me.dom,
  276.             st = dom.style,
  277.             xy = me.getXY(),
  278.             wrap,
  279.             r,
  280.             b,
  281.             a,
  282.             zero = {to: 0}; 
  283.                     
  284.         anchor = anchor || "t";
  285.         me.queueFx(o, function(){
  286.             
  287.             // restore values after effect
  288.             r = fly(dom).getFxRestore(); 
  289.             b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight};
  290.             b.right = b.x + b.width;
  291.             b.bottom = b.y + b.height;
  292.                 
  293.             // fixed size for slide   
  294.             fly(dom).setWidth(b.width).setHeight(b.height);
  295.             // wrap if needed
  296.             wrap = fly(dom).fxWrap(r.pos, o, VISIBLE);
  297.                 
  298.             st.visibility = VISIBLE;
  299.             st.position = ABSOLUTE;
  300.             fly(wrap).setWidth(b.width).setHeight(b.height);            
  301.             function after(){
  302.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();                
  303.                 fly(dom).fxUnwrap(wrap, r.pos, o);
  304.                 st.width = r.width;
  305.                 st.height = r.height;
  306.                 fly(dom).afterFx(o);
  307.             }            
  308.             
  309.             function argCalc(style, s1, s2, p1, v1, p2, v2, p3, v3){                    
  310.                 var ret = {};
  311.                 
  312.                 style[s1] = style[s2] = "0";
  313.                 ret[p1] = v1;               
  314.                 if(p2){
  315.                     ret[p2] = v2;               
  316.                 }
  317.                 if(p3){
  318.                     ret[p3] = v3;
  319.                 }
  320.                 
  321.                 return ret;
  322.             };
  323.             
  324.             a = fly(dom).switchStatements(anchor.toLowerCase(), argCalc, {
  325.                 t  : [st, LEFT, BOTTOM, HEIGHT, zero],
  326.                 l  : [st, RIGHT, TOP, WIDTH, zero],
  327.                 r  : [st, LEFT, TOP, WIDTH, zero, POINTS, {to : [b.right, b.y]}],
  328.                 b  : [st, LEFT, TOP, HEIGHT, zero, POINTS, {to : [b.x, b.bottom]}],
  329.                 tl : [st, RIGHT, BOTTOM, WIDTH, zero, HEIGHT, zero],
  330.                 bl : [st, RIGHT, TOP, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.x, b.bottom]}],
  331.                 br : [st, LEFT, TOP, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.x + b.width, b.bottom]}],
  332.                 tr : [st, LEFT, BOTTOM, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.right, b.y]}]
  333.             });
  334.             
  335.             arguments.callee.anim = fly(wrap).fxanim(a,
  336.                 o,
  337.                 MOTION,
  338.                 .5,
  339.                 EASEOUT, 
  340.                 after);
  341.         });
  342.         return me;
  343.     },
  344.     /**
  345.      * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
  346.      * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
  347.      * The element must be removed from the DOM using the 'remove' config option if desired.
  348.      * Usage:
  349.      *<pre><code>
  350. // default
  351. el.puff();
  352. // common config options shown with default values
  353. el.puff({
  354.     easing: 'easeOut',
  355.     duration: .5,
  356.     remove: false,
  357.     useDisplay: false
  358. });
  359. </code></pre>
  360.      * @param {Object} options (optional) Object literal with any of the Fx config options
  361.      * @return {Ext.Element} The Element
  362.      */
  363.     puff : function(o){
  364.         o = getObject(o);
  365.         var me = this,
  366.             dom = me.dom,
  367.             st = dom.style,
  368.             width,
  369.             height,
  370.             r;
  371.         me.queueFx(o, function(){
  372.             width = fly(dom).getWidth();
  373.             height = fly(dom).getHeight();
  374.             fly(dom).clearOpacity();
  375.             fly(dom).show();
  376.             // restore values after effect
  377.             r = fly(dom).getFxRestore();                   
  378.             
  379.             function after(){
  380.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();                  
  381.                 fly(dom).clearOpacity();  
  382.                 fly(dom).setPositioning(r.pos);
  383.                 st.width = r.width;
  384.                 st.height = r.height;
  385.                 st.fontSize = '';
  386.                 fly(dom).afterFx(o);
  387.             }   
  388.             arguments.callee.anim = fly(dom).fxanim({
  389.                     width : {to : fly(dom).adjustWidth(width * 2)},
  390.                     height : {to : fly(dom).adjustHeight(height * 2)},
  391.                     points : {by : [-width * .5, -height * .5]},
  392.                     opacity : {to : 0},
  393.                     fontSize: {to : 200, unit: "%"}
  394.                 },
  395.                 o,
  396.                 MOTION,
  397.                 .5,
  398.                 EASEOUT,
  399.                  after);
  400.         });
  401.         return me;
  402.     },
  403.     /**
  404.      * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
  405.      * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
  406.      * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
  407.      * Usage:
  408.      *<pre><code>
  409. // default
  410. el.switchOff();
  411. // all config options shown with default values
  412. el.switchOff({
  413.     easing: 'easeIn',
  414.     duration: .3,
  415.     remove: false,
  416.     useDisplay: false
  417. });
  418. </code></pre>
  419.      * @param {Object} options (optional) Object literal with any of the Fx config options
  420.      * @return {Ext.Element} The Element
  421.      */
  422.     switchOff : function(o){
  423.         o = getObject(o);
  424.         var me = this,
  425.             dom = me.dom,
  426.             st = dom.style,
  427.             r;
  428.         me.queueFx(o, function(){
  429.             fly(dom).clearOpacity();
  430.             fly(dom).clip();
  431.             // restore values after effect
  432.             r = fly(dom).getFxRestore();
  433.                 
  434.             function after(){
  435.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();  
  436.                 fly(dom).clearOpacity();
  437.                 fly(dom).setPositioning(r.pos);
  438.                 st.width = r.width;
  439.                 st.height = r.height;   
  440.                 fly(dom).afterFx(o);
  441.             };
  442.             fly(dom).fxanim({opacity : {to : 0.3}}, 
  443.                 NULL, 
  444.                 NULL, 
  445.                 .1, 
  446.                 NULL, 
  447.                 function(){                                 
  448.                     fly(dom).clearOpacity();
  449.                         (function(){                            
  450.                             fly(dom).fxanim({
  451.                                 height : {to : 1},
  452.                                 points : {by : [0, fly(dom).getHeight() * .5]}
  453.                             }, 
  454.                             o, 
  455.                             MOTION, 
  456.                             0.3, 
  457.                             'easeIn', 
  458.                             after);
  459.                         }).defer(100);
  460.                 });
  461.         });
  462.         return me;
  463.     },
  464.     /**
  465.      * Highlights the Element by setting a color (applies to the background-color by default, but can be
  466.      * changed using the "attr" config option) and then fading back to the original color. If no original
  467.      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
  468.      * Usage:
  469. <pre><code>
  470. // default: highlight background to yellow
  471. el.highlight();
  472. // custom: highlight foreground text to blue for 2 seconds
  473. el.highlight("0000ff", { attr: 'color', duration: 2 });
  474. // common config options shown with default values
  475. el.highlight("ffff9c", {
  476.     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
  477.     endColor: (current color) or "ffffff",
  478.     easing: 'easeIn',
  479.     duration: 1
  480. });
  481. </code></pre>
  482.      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
  483.      * @param {Object} options (optional) Object literal with any of the Fx config options
  484.      * @return {Ext.Element} The Element
  485.      */ 
  486.     highlight : function(color, o){
  487.         o = getObject(o);
  488.         var me = this,
  489.             dom = me.dom,
  490.             attr = o.attr || "backgroundColor",
  491.             a = {},
  492.             restore;
  493.         me.queueFx(o, function(){
  494.             fly(dom).clearOpacity();
  495.             fly(dom).show();
  496.             function after(){
  497.                 dom.style[attr] = restore;
  498.                 fly(dom).afterFx(o);
  499.             }            
  500.             restore = dom.style[attr];
  501.             a[attr] = {from: color || "ffff9c", to: o.endColor || fly(dom).getColor(attr) || "ffffff"};
  502.             arguments.callee.anim = fly(dom).fxanim(a,
  503.                 o,
  504.                 'color',
  505.                 1,
  506.                 'easeIn', 
  507.                 after);
  508.         });
  509.         return me;
  510.     },
  511.    /**
  512.     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
  513.     * Usage:
  514. <pre><code>
  515. // default: a single light blue ripple
  516. el.frame();
  517. // custom: 3 red ripples lasting 3 seconds total
  518. el.frame("ff0000", 3, { duration: 3 });
  519. // common config options shown with default values
  520. el.frame("C3DAF9", 1, {
  521.     duration: 1 //duration of each individual ripple.
  522.     // Note: Easing is not configurable and will be ignored if included
  523. });
  524. </code></pre>
  525.     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
  526.     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
  527.     * @param {Object} options (optional) Object literal with any of the Fx config options
  528.     * @return {Ext.Element} The Element
  529.     */
  530.     frame : function(color, count, o){
  531.         o = getObject(o);
  532.         var me = this,
  533.             dom = me.dom,
  534.             proxy,
  535.             active;
  536.         me.queueFx(o, function(){
  537.             color = color || "#C3DAF9"
  538.             if(color.length == 6){
  539.                 color = "#" + color;
  540.             }            
  541.             count = count || 1;
  542.             fly(dom).show();
  543.             var xy = fly(dom).getXY(),
  544.                 b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight},
  545.                 queue = function(){
  546.                     proxy = fly(document.body || document.documentElement).createChild({
  547.                         style:{
  548.                             visbility: HIDDEN,
  549.                             position : ABSOLUTE,
  550.                             "z-index": 35000, // yee haw
  551.                             border : "0px solid " + color
  552.                         }
  553.                     });
  554.                     return proxy.queueFx({}, animFn);
  555.                 };
  556.             
  557.             
  558.             arguments.callee.anim = {
  559.                 isAnimated: true,
  560.                 stop: function() {
  561.                     count = 0;
  562.                     proxy.stopFx();
  563.                 }
  564.             };
  565.             
  566.             function animFn(){
  567.                 var scale = Ext.isBorderBox ? 2 : 1;
  568.                 active = proxy.anim({
  569.                     top : {from : b.y, to : b.y - 20},
  570.                     left : {from : b.x, to : b.x - 20},
  571.                     borderWidth : {from : 0, to : 10},
  572.                     opacity : {from : 1, to : 0},
  573.                     height : {from : b.height, to : b.height + 20 * scale},
  574.                     width : {from : b.width, to : b.width + 20 * scale}
  575.                 },{
  576.                     duration: o.duration || 1,
  577.                     callback: function() {
  578.                         proxy.remove();
  579.                         --count > 0 ? queue() : fly(dom).afterFx(o);
  580.                     }
  581.                 });
  582.                 arguments.callee.anim = {
  583.                     isAnimated: true,
  584.                     stop: function(){
  585.                         active.stop();
  586.                     }
  587.                 };
  588.             };
  589.             queue();
  590.         });
  591.         return me;
  592.     },
  593.    /**
  594.     * Creates a pause before any subsequent queued effects begin.  If there are
  595.     * no effects queued after the pause it will have no effect.
  596.     * Usage:
  597. <pre><code>
  598. el.pause(1);
  599. </code></pre>
  600.     * @param {Number} seconds The length of time to pause (in seconds)
  601.     * @return {Ext.Element} The Element
  602.     */
  603.     pause : function(seconds){        
  604.         var dom = this.dom,
  605.             t;
  606.         this.queueFx({}, function(){
  607.             t = setTimeout(function(){
  608.                 fly(dom).afterFx({});
  609.             }, seconds * 1000);
  610.             arguments.callee.anim = {
  611.                 isAnimated: true,
  612.                 stop: function(){
  613.                     clearTimeout(t);
  614.                     fly(dom).afterFx({});
  615.                 }
  616.             };
  617.         });
  618.         return this;
  619.     },
  620.    /**
  621.     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
  622.     * using the <tt>{@link #endOpacity}</tt> config option.
  623.     * Usage:
  624. <pre><code>
  625. // default: fade in from opacity 0 to 100%
  626. el.fadeIn();
  627. // custom: fade in from opacity 0 to 75% over 2 seconds
  628. el.fadeIn({ endOpacity: .75, duration: 2});
  629. // common config options shown with default values
  630. el.fadeIn({
  631.     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
  632.     easing: 'easeOut',
  633.     duration: .5
  634. });
  635. </code></pre>
  636.     * @param {Object} options (optional) Object literal with any of the Fx config options
  637.     * @return {Ext.Element} The Element
  638.     */
  639.     fadeIn : function(o){
  640.         o = getObject(o);
  641.         var me = this,
  642.             dom = me.dom,
  643.             to = o.endOpacity || 1;
  644.         
  645.         me.queueFx(o, function(){
  646.             fly(dom).setOpacity(0);
  647.             fly(dom).fixDisplay();
  648.             dom.style.visibility = VISIBLE;
  649.             arguments.callee.anim = fly(dom).fxanim({opacity:{to:to}},
  650.                 o, NULL, .5, EASEOUT, function(){
  651.                 if(to == 1){
  652.                     fly(dom).clearOpacity();
  653.                 }
  654.                 fly(dom).afterFx(o);
  655.             });
  656.         });
  657.         return me;
  658.     },
  659.    /**
  660.     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
  661.     * using the <tt>{@link #endOpacity}</tt> config option.  Note that IE may require
  662.     * <tt>{@link #useDisplay}:true</tt> in order to redisplay correctly.
  663.     * Usage:
  664. <pre><code>
  665. // default: fade out from the element's current opacity to 0
  666. el.fadeOut();
  667. // custom: fade out from the element's current opacity to 25% over 2 seconds
  668. el.fadeOut({ endOpacity: .25, duration: 2});
  669. // common config options shown with default values
  670. el.fadeOut({
  671.     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
  672.     easing: 'easeOut',
  673.     duration: .5,
  674.     remove: false,
  675.     useDisplay: false
  676. });
  677. </code></pre>
  678.     * @param {Object} options (optional) Object literal with any of the Fx config options
  679.     * @return {Ext.Element} The Element
  680.     */
  681.     fadeOut : function(o){
  682.         o = getObject(o);
  683.         var me = this,
  684.             dom = me.dom,
  685.             style = dom.style,
  686.             to = o.endOpacity || 0;         
  687.         
  688.         me.queueFx(o, function(){  
  689.             arguments.callee.anim = fly(dom).fxanim({ 
  690.                 opacity : {to : to}},
  691.                 o, 
  692.                 NULL, 
  693.                 .5, 
  694.                 EASEOUT, 
  695.                 function(){
  696.                     if(to == 0){
  697.                         Ext.Element.data(dom, 'visibilityMode') == Ext.Element.DISPLAY || o.useDisplay ? 
  698.                             style.display = "none" :
  699.                             style.visibility = HIDDEN;
  700.                             
  701.                         fly(dom).clearOpacity();
  702.                     }
  703.                     fly(dom).afterFx(o);
  704.             });
  705.         });
  706.         return me;
  707.     },
  708.    /**
  709.     * Animates the transition of an element's dimensions from a starting height/width
  710.     * to an ending height/width.  This method is a convenience implementation of {@link shift}.
  711.     * Usage:
  712. <pre><code>
  713. // change height and width to 100x100 pixels
  714. el.scale(100, 100);
  715. // common config options shown with default values.  The height and width will default to
  716. // the element&#39;s existing values if passed as null.
  717. el.scale(
  718.     [element&#39;s width],
  719.     [element&#39;s height], {
  720.         easing: 'easeOut',
  721.         duration: .35
  722.     }
  723. );
  724. </code></pre>
  725.     * @param {Number} width  The new width (pass undefined to keep the original width)
  726.     * @param {Number} height  The new height (pass undefined to keep the original height)
  727.     * @param {Object} options (optional) Object literal with any of the Fx config options
  728.     * @return {Ext.Element} The Element
  729.     */
  730.     scale : function(w, h, o){
  731.         this.shift(Ext.apply({}, o, {
  732.             width: w,
  733.             height: h
  734.         }));
  735.         return this;
  736.     },
  737.    /**
  738.     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
  739.     * Any of these properties not specified in the config object will not be changed.  This effect 
  740.     * requires that at least one new dimension, position or opacity setting must be passed in on
  741.     * the config object in order for the function to have any effect.
  742.     * Usage:
  743. <pre><code>
  744. // slide the element horizontally to x position 200 while changing the height and opacity
  745. el.shift({ x: 200, height: 50, opacity: .8 });
  746. // common config options shown with default values.
  747. el.shift({
  748.     width: [element&#39;s width],
  749.     height: [element&#39;s height],
  750.     x: [element&#39;s x position],
  751.     y: [element&#39;s y position],
  752.     opacity: [element&#39;s opacity],
  753.     easing: 'easeOut',
  754.     duration: .35
  755. });
  756. </code></pre>
  757.     * @param {Object} options  Object literal with any of the Fx config options
  758.     * @return {Ext.Element} The Element
  759.     */
  760.     shift : function(o){
  761.         o = getObject(o);
  762.         var dom = this.dom,
  763.             a = {};
  764.                 
  765.         this.queueFx(o, function(){
  766.             for (var prop in o) {
  767.                 if (o[prop] != UNDEFINED) {                                                 
  768.                     a[prop] = {to : o[prop]};                   
  769.                 }
  770.             } 
  771.             
  772.             a.width ? a.width.to = fly(dom).adjustWidth(o.width) : a;
  773.             a.height ? a.height.to = fly(dom).adjustWidth(o.height) : a;   
  774.             
  775.             if (a.x || a.y || a.xy) {
  776.                 a.points = a.xy || 
  777.                            {to : [ a.x ? a.x.to : fly(dom).getX(),
  778.                                    a.y ? a.y.to : fly(dom).getY()]};                  
  779.             }
  780.             arguments.callee.anim = fly(dom).fxanim(a,
  781.                 o, 
  782.                 MOTION, 
  783.                 .35, 
  784.                 EASEOUT, 
  785.                 function(){
  786.                     fly(dom).afterFx(o);
  787.                 });
  788.         });
  789.         return this;
  790.     },
  791.     /**
  792.      * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
  793.      * ending point of the effect.
  794.      * Usage:
  795.      *<pre><code>
  796. // default: slide the element downward while fading out
  797. el.ghost();
  798. // custom: slide the element out to the right with a 2-second duration
  799. el.ghost('r', { duration: 2 });
  800. // common config options shown with default values
  801. el.ghost('b', {
  802.     easing: 'easeOut',
  803.     duration: .5,
  804.     remove: false,
  805.     useDisplay: false
  806. });
  807. </code></pre>
  808.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
  809.      * @param {Object} options (optional) Object literal with any of the Fx config options
  810.      * @return {Ext.Element} The Element
  811.      */
  812.     ghost : function(anchor, o){
  813.         o = getObject(o);
  814.         var me = this,
  815.             dom = me.dom,
  816.             st = dom.style,
  817.             a = {opacity: {to: 0}, points: {}},
  818.             pt = a.points,
  819.             r,
  820.             w,
  821.             h;
  822.             
  823.         anchor = anchor || "b";
  824.         me.queueFx(o, function(){
  825.             // restore values after effect
  826.             r = fly(dom).getFxRestore();
  827.             w = fly(dom).getWidth();
  828.             h = fly(dom).getHeight();
  829.             
  830.             function after(){
  831.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();   
  832.                 fly(dom).clearOpacity();
  833.                 fly(dom).setPositioning(r.pos);
  834.                 st.width = r.width;
  835.                 st.height = r.height;
  836.                 fly(dom).afterFx(o);
  837.             }
  838.                 
  839.             pt.by = fly(dom).switchStatements(anchor.toLowerCase(), function(v1,v2){ return [v1, v2];}, {
  840.                t  : [0, -h],
  841.                l  : [-w, 0],
  842.                r  : [w, 0],
  843.                b  : [0, h],
  844.                tl : [-w, -h],
  845.                bl : [-w, h],
  846.                br : [w, h],
  847.                tr : [w, -h] 
  848.             });
  849.                 
  850.             arguments.callee.anim = fly(dom).fxanim(a,
  851.                 o,
  852.                 MOTION,
  853.                 .5,
  854.                 EASEOUT, after);
  855.         });
  856.         return me;
  857.     },
  858.     /**
  859.      * Ensures that all effects queued after syncFx is called on the element are
  860.      * run concurrently.  This is the opposite of {@link #sequenceFx}.
  861.      * @return {Ext.Element} The Element
  862.      */
  863.     syncFx : function(){
  864.         var me = this;
  865.         me.fxDefaults = Ext.apply(me.fxDefaults || {}, {
  866.             block : FALSE,
  867.             concurrent : TRUE,
  868.             stopFx : FALSE
  869.         });
  870.         return me;
  871.     },
  872.     /**
  873.      * Ensures that all effects queued after sequenceFx is called on the element are
  874.      * run in sequence.  This is the opposite of {@link #syncFx}.
  875.      * @return {Ext.Element} The Element
  876.      */
  877.     sequenceFx : function(){
  878.         var me = this;
  879.         me.fxDefaults = Ext.apply(me.fxDefaults || {}, {
  880.             block : FALSE,
  881.             concurrent : FALSE,
  882.             stopFx : FALSE
  883.         });
  884.         return me;
  885.     },
  886.     /* @private */
  887.     nextFx : function(){        
  888.         var ef = getQueue(this.dom.id)[0];
  889.         if(ef){
  890.             ef.call(this);
  891.         }
  892.     },
  893.     /**
  894.      * Returns true if the element has any effects actively running or queued, else returns false.
  895.      * @return {Boolean} True if element has active effects, else false
  896.      */
  897.     hasActiveFx : function(){
  898.         return getQueue(this.dom.id)[0];
  899.     },
  900.     /**
  901.      * Stops any running effects and clears the element's internal effects queue if it contains
  902.      * any additional effects that haven't started yet.
  903.      * @return {Ext.Element} The Element
  904.      */
  905.     stopFx : function(finish){
  906.         var me = this,
  907.             id = me.dom.id;
  908.         if(me.hasActiveFx()){
  909.             var cur = getQueue(id)[0];
  910.             if(cur && cur.anim){
  911.                 if(cur.anim.isAnimated){
  912.                     setQueue(id, [cur]); //clear
  913.                     cur.anim.stop(finish !== undefined ? finish : TRUE);
  914.                 }else{
  915.                     setQueue(id, []);
  916.                 }
  917.             }
  918.         }
  919.         return me;
  920.     },
  921.     /* @private */
  922.     beforeFx : function(o){
  923.         if(this.hasActiveFx() && !o.concurrent){
  924.            if(o.stopFx){
  925.                this.stopFx();
  926.                return TRUE;
  927.            }
  928.            return FALSE;
  929.         }
  930.         return TRUE;
  931.     },
  932.     /**
  933.      * Returns true if the element is currently blocking so that no other effect can be queued
  934.      * until this effect is finished, else returns false if blocking is not set.  This is commonly
  935.      * used to ensure that an effect initiated by a user action runs to completion prior to the
  936.      * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
  937.      * @return {Boolean} True if blocking, else false
  938.      */
  939.     hasFxBlock : function(){
  940.         var q = getQueue(this.dom.id);
  941.         return q && q[0] && q[0].block;
  942.     },
  943.     /* @private */
  944.     queueFx : function(o, fn){
  945.         var me = this;
  946.         if(!me.hasFxBlock()){
  947.             Ext.applyIf(o, me.fxDefaults);
  948.             if(!o.concurrent){
  949.                 var run = me.beforeFx(o);
  950.                 fn.block = o.block;
  951.                 getQueue(me.dom.id).push(fn);
  952.                 if(run){
  953.                     me.nextFx();
  954.                 }
  955.             }else{
  956.                 fn.call(me);
  957.             }
  958.         }
  959.         return me;
  960.     },
  961.     /* @private */
  962.     fxWrap : function(pos, o, vis){ 
  963.         var dom = this.dom,
  964.             wrap,
  965.             wrapXY;
  966.         if(!o.wrap || !(wrap = Ext.getDom(o.wrap))){            
  967.             if(o.fixPosition){
  968.                 wrapXY = fly(dom).getXY();
  969.             }
  970.             var div = document.createElement("div");
  971.             div.style.visibility = vis;
  972.             wrap = dom.parentNode.insertBefore(div, dom);
  973.             fly(wrap).setPositioning(pos);
  974.             if(fly(wrap).isStyle(POSITION, "static")){
  975.                 fly(wrap).position("relative");
  976.             }
  977.             fly(dom).clearPositioning('auto');
  978.             fly(wrap).clip();
  979.             wrap.appendChild(dom);
  980.             if(wrapXY){
  981.                 fly(wrap).setXY(wrapXY);
  982.             }
  983.         }
  984.         return wrap;
  985.     },
  986.     /* @private */
  987.     fxUnwrap : function(wrap, pos, o){      
  988.         var dom = this.dom;
  989.         fly(dom).clearPositioning();
  990.         fly(dom).setPositioning(pos);
  991.         if(!o.wrap){
  992.             wrap.parentNode.insertBefore(dom, wrap);
  993.             fly(wrap).remove();
  994.         }
  995.     },
  996.     /* @private */
  997.     getFxRestore : function(){
  998.         var st = this.dom.style;
  999.         return {pos: this.getPositioning(), width: st.width, height : st.height};
  1000.     },
  1001.     /* @private */
  1002.     afterFx : function(o){
  1003.         var dom = this.dom,
  1004.             id = dom.id,
  1005.             notConcurrent = !o.concurrent;
  1006.         if(o.afterStyle){
  1007.             fly(dom).setStyle(o.afterStyle);            
  1008.         }
  1009.         if(o.afterCls){
  1010.             fly(dom).addClass(o.afterCls);
  1011.         }
  1012.         if(o.remove == TRUE){
  1013.             fly(dom).remove();
  1014.         }
  1015.         if(notConcurrent){
  1016.             getQueue(id).shift();
  1017.         }
  1018.         if(o.callback){
  1019.             o.callback.call(o.scope, fly(dom));
  1020.         }
  1021.         if(notConcurrent){
  1022.             fly(dom).nextFx();
  1023.         }
  1024.     },
  1025.     /* @private */
  1026.     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
  1027.         animType = animType || 'run';
  1028.         opt = opt || {};
  1029.         var anim = Ext.lib.Anim[animType](
  1030.                 this.dom, 
  1031.                 args,
  1032.                 (opt.duration || defaultDur) || .35,
  1033.                 (opt.easing || defaultEase) || EASEOUT,
  1034.                 cb,            
  1035.                 this
  1036.             );
  1037.         opt.anim = anim;
  1038.         return anim;
  1039.     }
  1040. };
  1041. // backwards compat
  1042. Ext.Fx.resize = Ext.Fx.scale;
  1043. //When included, Ext.Fx is automatically applied to Element so that all basic
  1044. //effects are available directly via the Element API
  1045. Ext.Element.addMethods(Ext.Fx);
  1046. })();