Fixed the giant negative number issue that Opera was having.
[jquery.git] / src / fx / fx.js
1 jQuery.fn.extend({
2
3         // overwrite the old show method
4         //_show: jQuery.fn.show,
5         
6         /**
7          * Show all matched elements using a graceful animation.
8          * The height, width, and opacity of each of the matched elements 
9          * are changed dynamically according to the specified speed.
10          *
11          * @example $("p").show("slow");
12          *
13          * @name show
14          * @type jQuery
15          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
16          * @cat Effects/Animations
17          */
18          
19         /**
20          * Show all matched elements using a graceful animation and firing a callback
21          * function after completion.
22          * The height, width, and opacity of each of the matched elements 
23          * are changed dynamically according to the specified speed.
24          *
25          * @example $("p").show("slow",function(){
26          *   alert("Animation Done.");
27          * });
28          *
29          * @name show
30          * @type jQuery
31          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
32          * @param Function callback A function to be executed whenever the animation completes.
33          * @cat Effects/Animations
34          */
35         show: function(speed,callback){
36                 return speed ? this.animate({
37                         height: "show", width: "show", opacity: "show"
38                 }, speed, callback) : this._show();
39         },
40         
41         // Overwrite the old hide method
42         //_hide: jQuery.fn.hide,
43         
44         /**
45          * Hide all matched elements using a graceful animation.
46          * The height, width, and opacity of each of the matched elements 
47          * are changed dynamically according to the specified speed.
48          *
49          * @example $("p").hide("slow");
50          *
51          * @name hide
52          * @type jQuery
53          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
54          * @cat Effects/Animations
55          */
56          
57         /**
58          * Hide all matched elements using a graceful animation and firing a callback
59          * function after completion.
60          * The height, width, and opacity of each of the matched elements 
61          * are changed dynamically according to the specified speed.
62          *
63          * @example $("p").hide("slow",function(){
64          *   alert("Animation Done.");
65          * });
66          *
67          * @name hide
68          * @type jQuery
69          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
70          * @param Function callback A function to be executed whenever the animation completes.
71          * @cat Effects/Animations
72          */
73         hide: function(speed,callback){
74                 return speed ? this.animate({
75                         height: "hide", width: "hide", opacity: "hide"
76                 }, speed, callback) : this._hide();
77         },
78         
79         /**
80          * Reveal all matched elements by adjusting their height.
81          * Only the height is adjusted for this animation, causing all matched
82          * elements to be revealed in a "sliding" manner.
83          *
84          * @example $("p").slideDown("slow");
85          *
86          * @name slideDown
87          * @type jQuery
88          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
89          * @cat Effects/Animations
90          */
91          
92         /**
93          * Reveal all matched elements by adjusting their height and firing a callback
94          * function after completion.
95          * Only the height is adjusted for this animation, causing all matched
96          * elements to be revealed in a "sliding" manner.
97          *
98          * @example $("p").slideDown("slow",function(){
99          *   alert("Animation Done.");
100          * });
101          *
102          * @name slideDown
103          * @type jQuery
104          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
105          * @param Function callback A function to be executed whenever the animation completes.
106          * @cat Effects/Animations
107          */
108         slideDown: function(speed,callback){
109                 return this.animate({height: "show"}, speed, callback);
110         },
111         
112         /**
113          * Hide all matched elements by adjusting their height.
114          * Only the height is adjusted for this animation, causing all matched
115          * elements to be hidden in a "sliding" manner.
116          *
117          * @example $("p").slideUp("slow");
118          *
119          * @name slideUp
120          * @type jQuery
121          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
122          * @cat Effects/Animations
123          */
124          
125         /**
126          * Hide all matched elements by adjusting their height and firing a callback
127          * function after completion.
128          * Only the height is adjusted for this animation, causing all matched
129          * elements to be hidden in a "sliding" manner.
130          *
131          * @example $("p").slideUp("slow",function(){
132          *   alert("Animation Done.");
133          * });
134          *
135          * @name slideUp
136          * @type jQuery
137          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
138          * @param Function callback A function to be executed whenever the animation completes.
139          * @cat Effects/Animations
140          */
141         slideUp: function(speed,callback){
142                 return this.animate({height: "hide"}, speed, callback);
143         },
144
145         slideToggle: function(speed,callback){
146                 return this.each(function(){
147                         var state = $(this).is(":hidden") ? "show" : "hide";
148                         $(this).animate({height: state}, speed, callback);
149                 });
150         },
151         
152         /**
153          * Fade in all matched elements by adjusting their opacity.
154          * Only the opacity is adjusted for this animation, meaning that
155          * all of the matched elements should already have some form of height
156          * and width associated with them.
157          *
158          * @example $("p").fadeIn("slow");
159          *
160          * @name fadeIn
161          * @type jQuery
162          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
163          * @cat Effects/Animations
164          */
165          
166         /**
167          * Fade in all matched elements by adjusting their opacity and firing a 
168          * callback function after completion.
169          * Only the opacity is adjusted for this animation, meaning that
170          * all of the matched elements should already have some form of height
171          * and width associated with them.
172          *
173          * @example $("p").fadeIn("slow",function(){
174          *   alert("Animation Done.");
175          * });
176          *
177          * @name fadeIn
178          * @type jQuery
179          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
180          * @param Function callback A function to be executed whenever the animation completes.
181          * @cat Effects/Animations
182          */
183         fadeIn: function(speed,callback){
184                 return this.animate({opacity: "show"}, speed, callback);
185         },
186         
187         /**
188          * Fade out all matched elements by adjusting their opacity.
189          * Only the opacity is adjusted for this animation, meaning that
190          * all of the matched elements should already have some form of height
191          * and width associated with them.
192          *
193          * @example $("p").fadeOut("slow");
194          *
195          * @name fadeOut
196          * @type jQuery
197          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
198          * @cat Effects/Animations
199          */
200          
201         /**
202          * Fade out all matched elements by adjusting their opacity and firing a 
203          * callback function after completion.
204          * Only the opacity is adjusted for this animation, meaning that
205          * all of the matched elements should already have some form of height
206          * and width associated with them.
207          *
208          * @example $("p").fadeOut("slow",function(){
209          *   alert("Animation Done.");
210          * });
211          *
212          * @name fadeOut
213          * @type jQuery
214          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
215          * @param Function callback A function to be executed whenever the animation completes.
216          * @cat Effects/Animations
217          */
218         fadeOut: function(speed,callback){
219                 return this.animate({opacity: "hide"}, speed, callback);
220         },
221         
222         /**
223          * Fade the opacity of all matched elements to a specified opacity.
224          * Only the opacity is adjusted for this animation, meaning that
225          * all of the matched elements should already have some form of height
226          * and width associated with them.
227          *
228          * @example $("p").fadeTo("slow", 0.5);
229          *
230          * @name fadeTo
231          * @type jQuery
232          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
233          * @param Number opacity The opacity to fade to (a number from 0 to 1).
234          * @cat Effects/Animations
235          */
236          
237         /**
238          * Fade the opacity of all matched elements to a specified opacity and 
239          * firing a callback function after completion.
240          * Only the opacity is adjusted for this animation, meaning that
241          * all of the matched elements should already have some form of height
242          * and width associated with them.
243          *
244          * @example $("p").fadeTo("slow", 0.5, function(){
245          *   alert("Animation Done.");
246          * });
247          *
248          * @name fadeTo
249          * @type jQuery
250          * @param Object speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
251          * @param Number opacity The opacity to fade to (a number from 0 to 1).
252          * @param Function callback A function to be executed whenever the animation completes.
253          * @cat Effects/Animations
254          */
255         fadeTo: function(speed,to,callback){
256                 return this.animate({opacity: to}, speed, callback);
257         },
258         
259         /**
260          * @private
261          */
262         animate: function(prop,speed,callback) {
263                 return this.queue(function(){
264                         var i = 0;
265                         for ( var p in prop ) {
266                                 var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p );
267                                 if ( prop[p].constructor == Number )
268                                         e.custom( e.cur(), prop[p] );
269                                 else
270                                         e[ prop[p] ]( prop );
271                         }
272                 });
273         },
274         
275         /**
276          *
277          * @private
278          */
279         queue: function(type,fn){
280                 if ( !fn ) {
281                         fn = type;
282                         type = "fx";
283                 }
284         
285                 return this.each(function(){
286                         if ( !this.queue )
287                                 this.queue = {};
288         
289                         if ( !this.queue[type] )
290                                 this.queue[type] = [];
291         
292                         this.queue[type].push( fn );
293                 
294                         if ( this.queue[type].length == 1 )
295                                 fn.apply(this);
296                 });
297         }
298
299 });
300
301 jQuery.extend({
302
303         setAuto: function(e,p) {
304                 if ( e.notAuto ) return;
305
306                 if ( p == "height" && e.scrollHeight != parseInt(jQuery.curCSS(e,p)) ) return;
307                 if ( p == "width" && e.scrollWidth != parseInt(jQuery.curCSS(e,p)) ) return;
308
309                 // Remember the original height
310                 var a = e.style[p];
311
312                 // Figure out the size of the height right now
313                 var o = jQuery.curCSS(e,p,1);
314
315                 if ( p == "height" && e.scrollHeight != o ||
316                         p == "width" && e.scrollWidth != o ) return;
317
318                 // Set the height to auto
319                 e.style[p] = e.currentStyle ? "" : "auto";
320
321                 // See what the size of "auto" is
322                 var n = jQuery.curCSS(e,p,1);
323
324                 // Revert back to the original size
325                 if ( o != n && n != "auto" ) {
326                         e.style[p] = a;
327                         e.notAuto = true;
328                 }
329         },
330         
331         speed: function(s,o,i) {
332                 o = o || {};
333                 
334                 if ( o.constructor == Function )
335                         o = { complete: o };
336                 
337                 var ss = { slow: 600, fast: 200 };
338                 o.duration = (s && s.constructor == Number ? s : ss[s]) || 400;
339         
340                 // Queueing
341                 o.oldComplete = o.complete;
342                 o.complete = function(){
343                         jQuery.dequeue(this, "fx");
344                         if ( o.oldComplete && o.oldComplete.constructor == Function )
345                                 o.oldComplete.apply( this );
346                 };
347                 
348                 if ( i > 0 )
349                         o.complete = null;
350         
351                 return o;
352         },
353         
354         queue: {},
355         
356         dequeue: function(elem,type){
357                 type = type || "fx";
358         
359                 if ( elem.queue && elem.queue[type] ) {
360                         // Remove self
361                         elem.queue[type].shift();
362         
363                         // Get next function
364                         var f = elem.queue[type][0];
365                 
366                         if ( f ) f.apply( elem );
367                 }
368         },
369
370         /*
371          * I originally wrote fx() as a clone of moo.fx and in the process
372          * of making it small in size the code became illegible to sane
373          * people. You've been warned.
374          */
375         
376         fx: function( elem, options, prop ){
377         
378                 var z = this;
379         
380                 // The users options
381                 z.o = {
382                         duration: options.duration || 400,
383                         complete: options.complete,
384                         step: options.step
385                 };
386         
387                 // The element
388                 z.el = elem;
389         
390                 // The styles
391                 var y = z.el.style;
392         
393                 // Simple function for setting a style value
394                 z.a = function(){
395                         if ( options.step )
396                                 options.step.apply( elem, [ z.now ] );
397
398                         if ( prop == "opacity" ) {
399                                 if (z.now == 1) z.now = 0.9999;
400                                 if (window.ActiveXObject)
401                                         y.filter = "alpha(opacity=" + z.now*100 + ")";
402                                 else
403                                         y.opacity = z.now;
404
405                         // My hate for IE will never die
406                         } else if ( parseInt(z.now) )
407                                 y[prop] = parseInt(z.now) + "px";
408                         y.display = "block";
409                 };
410         
411                 // Figure out the maximum number to run to
412                 z.max = function(){
413                         return parseFloat( jQuery.css(z.el,prop) );
414                 };
415         
416                 // Get the current size
417                 z.cur = function(){
418                         var r = parseFloat( jQuery.curCSS(z.el, prop) );
419                         return r && r > -10000 ? r : z.max();
420                 };
421         
422                 // Start an animation from one number to another
423                 z.custom = function(from,to){
424                         z.startTime = (new Date()).getTime();
425                         z.now = from;
426                         z.a();
427         
428                         z.timer = setInterval(function(){
429                                 z.step(from, to);
430                         }, 13);
431                 };
432         
433                 // Simple 'show' function
434                 z.show = function( p ){
435                         if ( !z.el.orig ) z.el.orig = {};
436
437                         // Remember where we started, so that we can go back to it later
438                         z.el.orig[prop] = this.cur();
439
440                         z.custom( 0, z.el.orig[prop] );
441
442                         // Stupid IE, look what you made me do
443                         if ( prop != "opacity" )
444                                 y[prop] = "1px";
445                 };
446         
447                 // Simple 'hide' function
448                 z.hide = function(){
449                         if ( !z.el.orig ) z.el.orig = {};
450
451                         // Remember where we started, so that we can go back to it later
452                         z.el.orig[prop] = this.cur();
453
454                         z.o.hide = true;
455
456                         // Begin the animation
457                         z.custom(z.cur(),0);
458                 };
459         
460                 // IE has trouble with opacity if it does not have layout
461                 if ( jQuery.browser.msie && !z.el.currentStyle.hasLayout )
462                         y.zoom = "1";
463         
464                 // Remember  the overflow of the element
465                 if ( !z.el.oldOverlay )
466                         z.el.oldOverflow = jQuery.css( z.el, "overflow" );
467         
468                 // Make sure that nothing sneaks out
469                 //if ( z.el.oldOverlay == "visible" )
470                 y.overflow = "hidden";
471         
472                 // Each step of an animation
473                 z.step = function(firstNum, lastNum){
474                         var t = (new Date()).getTime();
475         
476                         if (t > z.o.duration + z.startTime) {
477                                 // Stop the timer
478                                 clearInterval(z.timer);
479                                 z.timer = null;
480
481                                 z.now = lastNum;
482                                 z.a();
483
484                                 // Hide the element if the "hide" operation was done
485                                 if ( z.o.hide ) y.display = 'none';
486         
487                                 // Reset the overflow
488                                 y.overflow = z.el.oldOverflow;
489
490                                 // Reset the property, if the item has been hidden
491                                 if ( z.o.hide )
492                                         y[ prop ] = z.el.orig[ prop ].constructor == Number && prop != "opacity" ?
493                                                 z.el.orig[prop] + "px" : z.el.orig[prop];
494
495                                 // set its height and/or width to auto
496                                 if ( prop == 'height' || prop == 'width' )
497                                         jQuery.setAuto( z.el, prop );
498
499                                 // If a callback was provided, execute it
500                                 if( z.o.complete && z.o.complete.constructor == Function )
501                                         // Execute the complete function
502                                         z.o.complete.apply( z.el );
503                         } else {
504                                 // Figure out where in the animation we are and set the number
505                                 var p = (t - this.startTime) / z.o.duration;
506                                 z.now = ((-Math.cos(p*Math.PI)/2) + 0.5) * (lastNum-firstNum) + firstNum;
507         
508                                 // Perform the next step of the animation
509                                 z.a();
510                         }
511                 };
512         
513         }
514
515 });