source: trunk/web/addons/job_monarch/lib/extjs/docs/output/Ext.Fx.html @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 36.8 KB
Line 
1        <div class="body-wrap">
2        <div class="top-tools">
3            <a class="inner-link" href="#Ext.Fx-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4            <a class="inner-link" href="#Ext.Fx-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5            <a class="inner-link" href="#Ext.Fx-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                            <a class="inner-link" href="#Ext.Fx-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7                        <a class="bookmark" href="../docs/?class=Ext.Fx"><img src="../resources/images/default/s.gif" class="item-icon icon-fav">Direct Link</a>
8        </div>
9                <h1>Class Ext.Fx</h1>
10        <table cellspacing="0">
11            <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
12            <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/Fx.js" target="_blank">Fx.js</a></td></tr>
13            <tr><td class="label">Class:</td><td class="hd-info">Fx</td></tr>
14                                    <tr><td class="label">Extends:</td><td class="hd-info">Object</td></tr>
15                    </table>
16        <div class="description">
17            <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
18to the <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a> interface when included, so all effects calls should be performed via Element.
19Conversely, since the effects are not actually defined in Element, Ext.Fx <b>must</b> be included in order for the
20Element effects to work.</p><br/>
21<p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
22they return the Element object itself as the method return value, it is not always possible to mix the two in a single
23method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
24Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
25while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
26expected results and should be done with care.</p><br/>
27<p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
28that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
29<pre>Value  Description
30-----  -----------------------------
31tl     The top left corner
32t      The center of the top edge
33tr     The top right corner
34l      The center of the left edge
35r      The center of the right edge
36bl     The bottom left corner
37b      The center of the bottom edge
38br     The bottom right corner</pre>
39<b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
40below are common options that can be passed to any Fx method.</b>        </div>
41       
42        <div class="hr"></div>
43                <a id="Ext.Fx-configs"></a>
44        <h2>Config Options</h2>
45        <table cellspacing="0" class="member-table">
46            <tr>
47                <th class="sig-header" colspan="2">Config Options</th>
48                <th class="msource-header">Defined By</th>
49            </tr>
50                <tr class="config-row">
51        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
52        <td class="sig">
53        <a id="Ext.Fx-afterCls"></a>
54            <b>afterCls</b> : String            <div class="mdesc">
55                            A css class to apply after the effect                        </div>
56        </td>
57        <td class="msource">Fx</td>
58    </tr>
59        <tr class="config-row alt expandable">
60        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
61        <td class="sig">
62        <a id="Ext.Fx-afterStyle"></a>
63            <b>afterStyle</b> : String/Object/Function            <div class="mdesc">
64                        <div class="short">A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or a function which retur...</div>
65            <div class="long">
66                A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or a function which returns such a specification that will be applied to the Element after the effect finishes            </div>
67                        </div>
68        </td>
69        <td class="msource">Fx</td>
70    </tr>
71        <tr class="config-row">
72        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
73        <td class="sig">
74        <a id="Ext.Fx-block"></a>
75            <b>block</b> : Boolean            <div class="mdesc">
76                            Whether the effect should block other effects from queueing while it runs                        </div>
77        </td>
78        <td class="msource">Fx</td>
79    </tr>
80        <tr class="config-row alt expandable">
81        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
82        <td class="sig">
83        <a id="Ext.Fx-callback"></a>
84            <b>callback</b> : Function            <div class="mdesc">
85                        <div class="short">A function called when the effect is finished. Note that effects are queued internally by the Fx class, so do not nee...</div>
86            <div class="long">
87                A function called when the effect is finished. Note that effects are queued internally by the Fx class, so do not need to use the callback parameter to specify another effect -- effects can simply be chained together and called in sequence (e.g., el.slideIn().highlight();). The callback is intended for any additional code that should run once a particular effect has completed. The Element being operated upon is passed as the first parameter.            </div>
88                        </div>
89        </td>
90        <td class="msource">Fx</td>
91    </tr>
92        <tr class="config-row expandable">
93        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
94        <td class="sig">
95        <a id="Ext.Fx-concurrent"></a>
96            <b>concurrent</b> : Boolean            <div class="mdesc">
97                        <div class="short">Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they ru...</div>
98            <div class="long">
99                Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence            </div>
100                        </div>
101        </td>
102        <td class="msource">Fx</td>
103    </tr>
104        <tr class="config-row alt">
105        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
106        <td class="sig">
107        <a id="Ext.Fx-duration"></a>
108            <b>duration</b> : Number            <div class="mdesc">
109                            The length of time (in seconds) that the effect should last                        </div>
110        </td>
111        <td class="msource">Fx</td>
112    </tr>
113        <tr class="config-row">
114        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
115        <td class="sig">
116        <a id="Ext.Fx-easing"></a>
117            <b>easing</b> : String            <div class="mdesc">
118                            A valid Easing value for the effect                        </div>
119        </td>
120        <td class="msource">Fx</td>
121    </tr>
122        <tr class="config-row alt">
123        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
124        <td class="sig">
125        <a id="Ext.Fx-remove"></a>
126            <b>remove</b> : Boolean            <div class="mdesc">
127                            Whether the Element should be removed from the DOM and destroyed after the effect finishes                        </div>
128        </td>
129        <td class="msource">Fx</td>
130    </tr>
131        <tr class="config-row">
132        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
133        <td class="sig">
134        <a id="Ext.Fx-scope"></a>
135            <b>scope</b> : Object            <div class="mdesc">
136                            The scope of the effect function                        </div>
137        </td>
138        <td class="msource">Fx</td>
139    </tr>
140        <tr class="config-row alt">
141        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
142        <td class="sig">
143        <a id="Ext.Fx-stopFx"></a>
144            <b>stopFx</b> : Boolean            <div class="mdesc">
145                            Whether subsequent effects should be stopped and removed after the current effect finishes                        </div>
146        </td>
147        <td class="msource">Fx</td>
148    </tr>
149        <tr class="config-row expandable">
150        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
151        <td class="sig">
152        <a id="Ext.Fx-useDisplay"></a>
153            <b>useDisplay</b> : Boolean            <div class="mdesc">
154                        <div class="short">Whether to use the display CSS property instead of visibility when hiding Elements (only applies to effects that end ...</div>
155            <div class="long">
156                Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to effects that end with the element being visually hidden, ignored otherwise)            </div>
157                        </div>
158        </td>
159        <td class="msource">Fx</td>
160    </tr>
161            </table>
162                <a id="Ext.Fx-props"></a>
163        <h2>Public Properties</h2>
164        <div class="no-members">This class has no public properties.</div>        <a id="Ext.Fx-methods"></a>
165        <h2>Public Methods</h2>
166                <table cellspacing="0" class="member-table">
167            <tr>
168                <th class="sig-header" colspan="2">Method</th>
169                <th class="msource-header">Defined By</th>
170            </tr>
171                <tr class="method-row expandable">
172        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
173        <td class="sig">
174        <a id="Ext.Fx-fadeIn"></a>
175            <b>fadeIn</b>(&nbsp;<span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
176                        <div class="short">Fade an element in (from transparent to opaque).  The ending opacity can be specified
177using the "endOpacity" config o...</div>
178            <div class="long">
179                Fade an element in (from transparent to opaque).  The ending opacity can be specified
180using the "endOpacity" config option.
181Usage:
182<pre><code><i>// <b>default</b>: fade <b>in</b> from opacity 0 to 100%</i>
183el.fadeIn();
184
185<i>// custom: fade <b>in</b> from opacity 0 to 75% over 2 seconds</i>
186el.fadeIn({ endOpacity: .75, duration: 2});
187
188<i>// common config options shown <b>with</b> default values</i>
189el.fadeIn({
190    endOpacity: 1, <i>//can be any value between 0 and 1 (e.g. .5)</i>
191    easing: <em>'easeOut'</em>,
192    duration: .5
193});</code></pre>    <div class="mdetail-params">
194        <strong>Parameters:</strong>
195        <ul><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
196        <strong>Returns:</strong>
197        <ul>
198            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
199        </ul>
200    </div>
201                </div>
202                        </div>
203        </td>
204        <td class="msource">Fx</td>
205    </tr>
206        <tr class="method-row alt expandable">
207        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
208        <td class="sig">
209        <a id="Ext.Fx-fadeOut"></a>
210            <b>fadeOut</b>(&nbsp;<span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
211                        <div class="short">Fade an element out (from opaque to transparent).  The ending opacity can be specified
212using the "endOpacity" config ...</div>
213            <div class="long">
214                Fade an element out (from opaque to transparent).  The ending opacity can be specified
215using the "endOpacity" config option.  Note that IE may require useDisplay:true in order
216to redisplay correctly.
217Usage:
218<pre><code><i>// <b>default</b>: fade out from the element's current opacity to 0</i>
219el.fadeOut();
220
221<i>// custom: fade out from the element's current opacity to 25% over 2 seconds</i>
222el.fadeOut({ endOpacity: .25, duration: 2});
223
224<i>// common config options shown <b>with</b> default values</i>
225el.fadeOut({
226    endOpacity: 0, <i>//can be any value between 0 and 1 (e.g. .5)</i>
227    easing: <em>'easeOut'</em>,
228    duration: .5,
229    remove: false,
230    useDisplay: false
231});</code></pre>    <div class="mdetail-params">
232        <strong>Parameters:</strong>
233        <ul><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
234        <strong>Returns:</strong>
235        <ul>
236            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
237        </ul>
238    </div>
239                </div>
240                        </div>
241        </td>
242        <td class="msource">Fx</td>
243    </tr>
244        <tr class="method-row expandable">
245        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
246        <td class="sig">
247        <a id="Ext.Fx-frame"></a>
248            <b>frame</b>(&nbsp;<span class="optional" title="Optional">[<code>String color</code>]</span>, <span class="optional" title="Optional">[<code>Number count</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
249                        <div class="short">Shows a ripple of exploding, attenuating borders to draw attention to an Element.
250Usage:
251// default: a single light ...</div>
252            <div class="long">
253                Shows a ripple of exploding, attenuating borders to draw attention to an Element.
254Usage:
255<pre><code><i>// <b>default</b>: a single light blue ripple</i>
256el.frame();
257
258<i>// custom: 3 red ripples lasting 3 seconds total</i>
259el.frame(<em>"ff0000"</em>, 3, { duration: 3 });
260
261<i>// common config options shown <b>with</b> default values</i>
262el.frame(<em>"C3DAF9"</em>, 1, {
263    duration: 1 <i>//duration of each individual ripple.</i>
264    <i>// Note: Easing is not configurable and will be ignored <b>if</b> included</i>
265});</code></pre>    <div class="mdetail-params">
266        <strong>Parameters:</strong>
267        <ul><li><code>color</code> : String<div class="sub-desc">(optional) The color of the border. Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').</div></li><li><code>count</code> : Number<div class="sub-desc">(optional) The number of ripples to display (defaults to 1)</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
268        <strong>Returns:</strong>
269        <ul>
270            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
271        </ul>
272    </div>
273                </div>
274                        </div>
275        </td>
276        <td class="msource">Fx</td>
277    </tr>
278        <tr class="method-row alt expandable">
279        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
280        <td class="sig">
281        <a id="Ext.Fx-ghost"></a>
282            <b>ghost</b>(&nbsp;<span class="optional" title="Optional">[<code>String anchor</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
283                        <div class="short">Slides the element while fading it out of view.  An anchor point can be optionally passed to set the
284ending point of...</div>
285            <div class="long">
286                Slides the element while fading it out of view.  An anchor point can be optionally passed to set the
287ending point of the effect.
288Usage:
289<pre><code><i>// <b>default</b>: slide the element downward <b>while</b> fading out</i>
290el.ghost();
291
292<i>// custom: slide the element out to the right <b>with</b> a 2-second duration</i>
293el.ghost(<em>'r'</em>, { duration: 2 });
294
295<i>// common config options shown <b>with</b> default values</i>
296el.ghost(<em>'b'</em>, {
297    easing: <em>'easeOut'</em>,
298    duration: .5,
299    remove: false,
300    useDisplay: false
301});</code></pre>    <div class="mdetail-params">
302        <strong>Parameters:</strong>
303        <ul><li><code>anchor</code> : String<div class="sub-desc">(optional) One of the valid Fx anchor positions (defaults to bottom: 'b')</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
304        <strong>Returns:</strong>
305        <ul>
306            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
307        </ul>
308    </div>
309                </div>
310                        </div>
311        </td>
312        <td class="msource">Fx</td>
313    </tr>
314        <tr class="method-row expandable">
315        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
316        <td class="sig">
317        <a id="Ext.Fx-hasActiveFx"></a>
318            <b>hasActiveFx</b>() : Boolean            <div class="mdesc">
319                        <div class="short">Returns true if the element has any effects actively running or queued, else returns false.</div>
320            <div class="long">
321                Returns true if the element has any effects actively running or queued, else returns false.    <div class="mdetail-params">
322        <strong>Parameters:</strong>
323        <ul><li>None.</li>        </ul>
324        <strong>Returns:</strong>
325        <ul>
326            <li><code>Boolean</code><div class="sub-desc">True if element has active effects, else false</div></li>
327        </ul>
328    </div>
329                </div>
330                        </div>
331        </td>
332        <td class="msource">Fx</td>
333    </tr>
334        <tr class="method-row alt expandable">
335        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
336        <td class="sig">
337        <a id="Ext.Fx-hasFxBlock"></a>
338            <b>hasFxBlock</b>() : Boolean            <div class="mdesc">
339                        <div class="short">Returns true if the element is currently blocking so that no other effect can be queued
340until this effect is finished...</div>
341            <div class="long">
342                Returns true if the element is currently blocking so that no other effect can be queued
343until this effect is finished, else returns false if blocking is not set.  This is commonly
344used to ensure that an effect initiated by a user action runs to completion prior to the
345same effect being restarted (e.g., firing only one effect even if the user clicks several times).    <div class="mdetail-params">
346        <strong>Parameters:</strong>
347        <ul><li>None.</li>        </ul>
348        <strong>Returns:</strong>
349        <ul>
350            <li><code>Boolean</code><div class="sub-desc">True if blocking, else false</div></li>
351        </ul>
352    </div>
353                </div>
354                        </div>
355        </td>
356        <td class="msource">Fx</td>
357    </tr>
358        <tr class="method-row expandable">
359        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
360        <td class="sig">
361        <a id="Ext.Fx-highlight"></a>
362            <b>highlight</b>(&nbsp;<span class="optional" title="Optional">[<code>String color</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
363                        <div class="short">Highlights the Element by setting a color (applies to the background-color by default, but can be
364changed using the "...</div>
365            <div class="long">
366                Highlights the Element by setting a color (applies to the background-color by default, but can be
367changed using the "attr" config option) and then fading back to the original color. If no original
368color is available, you should provide the "endColor" config option which will be cleared after the animation.
369Usage:
370<pre><code><i>// <b>default</b>: highlight background to yellow</i>
371el.highlight();
372
373<i>// custom: highlight foreground text to blue <b>for</b> 2 seconds</i>
374el.highlight(<em>"0000ff"</em>, { attr: <em>'color'</em>, duration: 2 });
375
376<i>// common config options shown <b>with</b> default values</i>
377el.highlight(<em>"ffff9c"</em>, {
378    attr: <em>"background-color"</em>, <i>//can be any valid CSS property (attribute) that supports a color value</i>
379    endColor: (current color) or <em>"ffffff"</em>,
380    easing: <em>'easeIn'</em>,
381    duration: 1
382});</code></pre>    <div class="mdetail-params">
383        <strong>Parameters:</strong>
384        <ul><li><code>color</code> : String<div class="sub-desc">(optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
385        <strong>Returns:</strong>
386        <ul>
387            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
388        </ul>
389    </div>
390                </div>
391                        </div>
392        </td>
393        <td class="msource">Fx</td>
394    </tr>
395        <tr class="method-row alt expandable">
396        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
397        <td class="sig">
398        <a id="Ext.Fx-pause"></a>
399            <b>pause</b>(&nbsp;<code>Number seconds</code>&nbsp;) : Ext.Element            <div class="mdesc">
400                        <div class="short">Creates a pause before any subsequent queued effects begin.  If there are
401no effects queued after the pause it will h...</div>
402            <div class="long">
403                Creates a pause before any subsequent queued effects begin.  If there are
404no effects queued after the pause it will have no effect.
405Usage:
406<pre><code>el.pause(1);</code></pre>    <div class="mdetail-params">
407        <strong>Parameters:</strong>
408        <ul><li><code>seconds</code> : Number<div class="sub-desc">The length of time to pause (in seconds)</div></li>        </ul>
409        <strong>Returns:</strong>
410        <ul>
411            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
412        </ul>
413    </div>
414                </div>
415                        </div>
416        </td>
417        <td class="msource">Fx</td>
418    </tr>
419        <tr class="method-row expandable">
420        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
421        <td class="sig">
422        <a id="Ext.Fx-puff"></a>
423            <b>puff</b>(&nbsp;<span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
424                        <div class="short">Fades the element out while slowly expanding it in all directions.  When the effect is completed, the
425element will b...</div>
426            <div class="long">
427                Fades the element out while slowly expanding it in all directions.  When the effect is completed, the
428element will be hidden (visibility = 'hidden') but block elements will still take up space in the document.
429The element must be removed from the DOM using the 'remove' config option if desired.
430Usage:
431<pre><code><i>// <b>default</b></i>
432el.puff();
433
434<i>// common config options shown <b>with</b> default values</i>
435el.puff({
436    easing: <em>'easeOut'</em>,
437    duration: .5,
438    remove: false,
439    useDisplay: false
440});</code></pre>    <div class="mdetail-params">
441        <strong>Parameters:</strong>
442        <ul><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
443        <strong>Returns:</strong>
444        <ul>
445            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
446        </ul>
447    </div>
448                </div>
449                        </div>
450        </td>
451        <td class="msource">Fx</td>
452    </tr>
453        <tr class="method-row alt expandable">
454        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
455        <td class="sig">
456        <a id="Ext.Fx-scale"></a>
457            <b>scale</b>(&nbsp;<code>Number width</code>, <code>Number height</code>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
458                        <div class="short">Animates the transition of an element's dimensions from a starting height/width
459to an ending height/width.
460Usage:
461//...</div>
462            <div class="long">
463                Animates the transition of an element's dimensions from a starting height/width
464to an ending height/width.
465Usage:
466<pre><code><i>// change height and width to 100x100 pixels</i>
467el.scale(100, 100);
468
469<i>// common config options shown <b>with</b> default values.  The height and width will <b>default</b> to</i>
470<i>// the element's existing values <b>if</b> passed as null.</i>
471el.scale(
472    [element's width],
473    [element's height], {
474            easing: <em>'easeOut'</em>,
475            duration: .35
476        }
477);</code></pre>    <div class="mdetail-params">
478        <strong>Parameters:</strong>
479        <ul><li><code>width</code> : Number<div class="sub-desc">The new width (pass undefined to keep the original width)</div></li><li><code>height</code> : Number<div class="sub-desc">The new height (pass undefined to keep the original height)</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
480        <strong>Returns:</strong>
481        <ul>
482            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
483        </ul>
484    </div>
485                </div>
486                        </div>
487        </td>
488        <td class="msource">Fx</td>
489    </tr>
490        <tr class="method-row expandable">
491        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
492        <td class="sig">
493        <a id="Ext.Fx-sequenceFx"></a>
494            <b>sequenceFx</b>() : Ext.Element            <div class="mdesc">
495                        <div class="short">Ensures that all effects queued after sequenceFx is called on the element are
496run in sequence.  This is the opposite ...</div>
497            <div class="long">
498                Ensures that all effects queued after sequenceFx is called on the element are
499run in sequence.  This is the opposite of <a ext:cls="Ext.Fx" ext:member="syncFx" href="output/Ext.Fx.html#syncFx">syncFx</a>.    <div class="mdetail-params">
500        <strong>Parameters:</strong>
501        <ul><li>None.</li>        </ul>
502        <strong>Returns:</strong>
503        <ul>
504            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
505        </ul>
506    </div>
507                </div>
508                        </div>
509        </td>
510        <td class="msource">Fx</td>
511    </tr>
512        <tr class="method-row alt expandable">
513        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
514        <td class="sig">
515        <a id="Ext.Fx-shift"></a>
516            <b>shift</b>(&nbsp;<code>Object options</code>&nbsp;) : Ext.Element            <div class="mdesc">
517                        <div class="short">Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
518Any of these prope...</div>
519            <div class="long">
520                Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
521Any of these properties not specified in the config object will not be changed.  This effect
522requires that at least one new dimension, position or opacity setting must be passed in on
523the config object in order for the function to have any effect.
524Usage:
525<pre><code><i>// slide the element horizontally to x position 200 <b>while</b> changing the height and opacity</i>
526el.shift({ x: 200, height: 50, opacity: .8 });
527
528<i>// common config options shown <b>with</b> default values.</i>
529el.shift({
530    width: [element's width],
531    height: [element's height],
532    x: [element's x position],
533    y: [element's y position],
534    opacity: [element's opacity],
535    easing: <em>'easeOut'</em>,
536    duration: .35
537});</code></pre>    <div class="mdetail-params">
538        <strong>Parameters:</strong>
539        <ul><li><code>options</code> : Object<div class="sub-desc">Object literal with any of the Fx config options</div></li>        </ul>
540        <strong>Returns:</strong>
541        <ul>
542            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
543        </ul>
544    </div>
545                </div>
546                        </div>
547        </td>
548        <td class="msource">Fx</td>
549    </tr>
550        <tr class="method-row expandable">
551        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
552        <td class="sig">
553        <a id="Ext.Fx-slideIn"></a>
554            <b>slideIn</b>(&nbsp;<span class="optional" title="Optional">[<code>String anchor</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
555                        <div class="short">Slides the element into view.  An anchor point can be optionally passed to set the point of
556origin for the slide effe...</div>
557            <div class="long">
558                Slides the element into view.  An anchor point can be optionally passed to set the point of
559origin for the slide effect.  This function automatically handles wrapping the element with
560a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
561Usage:
562<pre><code><i>// <b>default</b>: slide the element <b>in</b> from the top</i>
563el.slideIn();
564
565<i>// custom: slide the element <b>in</b> from the right <b>with</b> a 2-second duration</i>
566el.slideIn(<em>'r'</em>, { duration: 2 });
567
568<i>// common config options shown <b>with</b> default values</i>
569el.slideIn(<em>'t'</em>, {
570    easing: <em>'easeOut'</em>,
571    duration: .5
572});</code></pre>    <div class="mdetail-params">
573        <strong>Parameters:</strong>
574        <ul><li><code>anchor</code> : String<div class="sub-desc">(optional) One of the valid Fx anchor positions (defaults to top: 't')</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
575        <strong>Returns:</strong>
576        <ul>
577            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
578        </ul>
579    </div>
580                </div>
581                        </div>
582        </td>
583        <td class="msource">Fx</td>
584    </tr>
585        <tr class="method-row alt expandable">
586        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
587        <td class="sig">
588        <a id="Ext.Fx-slideOut"></a>
589            <b>slideOut</b>(&nbsp;<span class="optional" title="Optional">[<code>String anchor</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
590                        <div class="short">Slides the element out of view.  An anchor point can be optionally passed to set the end point
591for the slide effect. ...</div>
592            <div class="long">
593                Slides the element out of view.  An anchor point can be optionally passed to set the end point
594for the slide effect.  When the effect is completed, the element will be hidden (visibility =
595'hidden') but block elements will still take up space in the document.  The element must be removed
596from the DOM using the 'remove' config option if desired.  This function automatically handles
597wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
598Usage:
599<pre><code><i>// <b>default</b>: slide the element out to the top</i>
600el.slideOut();
601
602<i>// custom: slide the element out to the right <b>with</b> a 2-second duration</i>
603el.slideOut(<em>'r'</em>, { duration: 2 });
604
605<i>// common config options shown <b>with</b> default values</i>
606el.slideOut(<em>'t'</em>, {
607    easing: <em>'easeOut'</em>,
608    duration: .5,
609    remove: false,
610    useDisplay: false
611});</code></pre>    <div class="mdetail-params">
612        <strong>Parameters:</strong>
613        <ul><li><code>anchor</code> : String<div class="sub-desc">(optional) One of the valid Fx anchor positions (defaults to top: 't')</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
614        <strong>Returns:</strong>
615        <ul>
616            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
617        </ul>
618    </div>
619                </div>
620                        </div>
621        </td>
622        <td class="msource">Fx</td>
623    </tr>
624        <tr class="method-row expandable">
625        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
626        <td class="sig">
627        <a id="Ext.Fx-stopFx"></a>
628            <b>stopFx</b>() : Ext.Element            <div class="mdesc">
629                        <div class="short">Stops any running effects and clears the element's internal effects queue if it contains
630any additional effects that ...</div>
631            <div class="long">
632                Stops any running effects and clears the element's internal effects queue if it contains
633any additional effects that haven't started yet.    <div class="mdetail-params">
634        <strong>Parameters:</strong>
635        <ul><li>None.</li>        </ul>
636        <strong>Returns:</strong>
637        <ul>
638            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
639        </ul>
640    </div>
641                </div>
642                        </div>
643        </td>
644        <td class="msource">Fx</td>
645    </tr>
646        <tr class="method-row alt expandable">
647        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
648        <td class="sig">
649        <a id="Ext.Fx-switchOff"></a>
650            <b>switchOff</b>(&nbsp;<span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : Ext.Element            <div class="mdesc">
651                        <div class="short">Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
652Whe...</div>
653            <div class="long">
654                Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
655When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still
656take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
657Usage:
658<pre><code><i>// <b>default</b></i>
659el.switchOff();
660
661<i>// all config options shown <b>with</b> default values</i>
662el.switchOff({
663    easing: <em>'easeIn'</em>,
664    duration: .3,
665    remove: false,
666    useDisplay: false
667});</code></pre>    <div class="mdetail-params">
668        <strong>Parameters:</strong>
669        <ul><li><code>options</code> : Object<div class="sub-desc">(optional) Object literal with any of the Fx config options</div></li>        </ul>
670        <strong>Returns:</strong>
671        <ul>
672            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
673        </ul>
674    </div>
675                </div>
676                        </div>
677        </td>
678        <td class="msource">Fx</td>
679    </tr>
680        <tr class="method-row expandable">
681        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
682        <td class="sig">
683        <a id="Ext.Fx-syncFx"></a>
684            <b>syncFx</b>() : Ext.Element            <div class="mdesc">
685                        <div class="short">Ensures that all effects queued after syncFx is called on the element are
686run concurrently.  This is the opposite of ...</div>
687            <div class="long">
688                Ensures that all effects queued after syncFx is called on the element are
689run concurrently.  This is the opposite of <a ext:cls="Ext.Fx" ext:member="sequenceFx" href="output/Ext.Fx.html#sequenceFx">sequenceFx</a>.    <div class="mdetail-params">
690        <strong>Parameters:</strong>
691        <ul><li>None.</li>        </ul>
692        <strong>Returns:</strong>
693        <ul>
694            <li><code>Ext.Element</code><div class="sub-desc">The Element</div></li>
695        </ul>
696    </div>
697                </div>
698                        </div>
699        </td>
700        <td class="msource">Fx</td>
701    </tr>
702            </table>
703                <a id="Ext.Fx-events"></a>
704        <h2>Public Events</h2>
705        <div class="no-members">This class has no public events.</div>
706        </div>
Note: See TracBrowser for help on using the repository browser.