2 show: function(speed,callback){
5 height: "show", width: "show", opacity: "show"
8 this.filter(":hidden").each(function(){
9 this.style.display = this.oldblock ? this.oldblock : "";
10 if ( jQuery.css(this,"display") == "none" )
11 this.style.display = "block";
15 hide: function(speed,callback){
18 height: "hide", width: "hide", opacity: "hide"
21 this.filter(":visible").each(function(){
22 this.oldblock = this.oldblock || jQuery.css(this,"display");
23 if ( this.oldblock == "none" )
24 this.oldblock = "block";
25 this.style.display = "none";
29 // Save the old toggle function
30 _toggle: jQuery.fn.toggle,
32 toggle: function( fn, fn2 ){
33 return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
34 this._toggle( fn, fn2 ) :
37 height: "toggle", width: "toggle", opacity: "toggle"
40 jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]();
44 slideDown: function(speed,callback){
45 return this.animate({height: "show"}, speed, callback);
48 slideUp: function(speed,callback){
49 return this.animate({height: "hide"}, speed, callback);
52 slideToggle: function(speed, callback){
53 return this.animate({height: "toggle"}, speed, callback);
56 fadeIn: function(speed, callback){
57 return this.animate({opacity: "show"}, speed, callback);
60 fadeOut: function(speed, callback){
61 return this.animate({opacity: "hide"}, speed, callback);
64 fadeTo: function(speed,to,callback){
65 return this.animate({opacity: to}, speed, callback);
68 animate: function( prop, speed, easing, callback ) {
69 var opt = jQuery.speed(speed, easing, callback);
71 return this[ opt.queue === false ? "each" : "queue" ](function(){
72 opt = jQuery.extend({}, opt);
73 var hidden = jQuery(this).is(":hidden"), self = this;
75 for ( var p in prop ) {
76 if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
77 return jQuery.isFunction(opt.complete) && opt.complete.apply(this);
79 if ( p == "height" || p == "width" ) {
80 // Store display property
81 opt.display = jQuery.css(this, "display");
83 // Make sure that nothing sneaks out
84 opt.overflow = this.style.overflow;
88 if ( opt.overflow != null )
89 this.style.overflow = "hidden";
91 opt.curAnim = jQuery.extend({}, prop);
93 jQuery.each( prop, function(name, val){
94 var e = new jQuery.fx( self, opt, name );
96 if ( /toggle|show|hide/.test(val) )
97 e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
99 var parts = val.toString().match(/^([+-]?)([\d.]+)(.*)$/),
100 start = e.cur(true) || 0;
103 end = parseFloat(parts[2]),
104 unit = parts[3] || "px";
106 // We need to compute starting value
107 if ( unit != "px" ) {
108 self.style[ name ] = end + unit;
109 start = (end / e.cur(true)) * start;
110 self.style[ name ] = start + unit;
113 // If a +/- token was provided, we're doing a relative animation
115 end = ((parts[1] == "-" ? -1 : 1) * end) + start;
117 e.custom( start, end, unit );
119 e.custom( start, val, "" );
123 // For JS strict compliance
128 queue: function(type, fn){
134 if ( !arguments.length )
135 return queue( this[0], type );
137 return this.each(function(){
138 if ( fn.constructor == Array )
139 queue(this, type, fn);
141 queue(this, type).push( fn );
143 if ( queue(this, type).length == 1 )
149 dequeue: function(type){
152 return this.each(function(){
153 var q = queue(this, type);
163 var timers = jQuery.timers;
165 return this.each(function(){
166 for ( var i = 0; i < timers.length; i++ )
167 if ( timers[i].elem == this )
168 timers.splice(i--, 1);
174 function queue( elem, type, array ) {
181 if ( !elem.queue[type] )
182 elem.queue[type] = [];
185 elem.queue[type] = jQuery.makeArray(array);
187 return elem.queue[type];
192 speed: function(speed, easing, fn) {
193 var opt = speed && speed.constructor == Object ? speed : {
194 complete: fn || !fn && easing ||
195 jQuery.isFunction( speed ) && speed,
197 easing: fn && easing || easing && easing.constructor != Function && easing
200 opt.duration = (opt.duration && opt.duration.constructor == Number ?
202 { slow: 600, fast: 200 }[opt.duration]) || 400;
205 opt.old = opt.complete;
206 opt.complete = function(){
207 jQuery(this).dequeue();
208 if ( jQuery.isFunction( opt.old ) )
209 opt.old.apply( this );
216 linear: function( p, n, firstNum, diff ) {
217 return firstNum + diff * p;
219 swing: function( p, n, firstNum, diff ) {
220 return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
226 fx: function( elem, options, prop ){
227 this.options = options;
237 jQuery.fx.prototype = {
239 // Simple function for setting a style value
241 if ( this.options.step )
242 this.options.step.apply( this.elem, [ this.now, this ] );
244 (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
246 // Set display property to block for height/width animations
247 if ( this.prop == "height" || this.prop == "width" )
248 this.elem.style.display = "block";
251 // Get the current size
252 cur: function(force){
253 if ( this.elem[this.prop] != null && this.elem.style[this.prop] == null )
254 return this.elem[ this.prop ];
256 var r = parseFloat(jQuery.curCSS(this.elem, this.prop, force));
257 return r && r > -10000 ? r : parseFloat(jQuery.css(this.elem, this.prop)) || 0;
260 // Start an animation from one number to another
261 custom: function(from, to, unit){
262 this.startTime = (new Date()).getTime();
265 this.unit = unit || this.unit || "px";
266 this.now = this.start;
267 this.pos = this.state = 0;
277 jQuery.timers.push(t);
279 if ( jQuery.timers.length == 1 ) {
280 var timer = setInterval(function(){
281 var timers = jQuery.timers;
283 for ( var i = 0; i < timers.length; i++ )
285 timers.splice(i--, 1);
287 if ( !timers.length )
288 clearInterval( timer );
293 // Simple 'show' function
295 // Remember where we started, so that we can go back to it later
296 this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
297 this.options.show = true;
299 // Begin the animation
300 this.custom(0, this.cur());
302 // Make sure that we start at a small width/height to avoid any
304 if ( this.prop == "width" || this.prop == "height" )
305 this.elem.style[this.prop] = "1px";
307 // Start by showing the element
308 jQuery(this.elem).show();
311 // Simple 'hide' function
313 // Remember where we started, so that we can go back to it later
314 this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
315 this.options.hide = true;
317 // Begin the animation
318 this.custom(this.cur(), 0);
321 // Each step of an animation
323 var t = (new Date()).getTime();
325 if ( t > this.options.duration + this.startTime ) {
327 this.pos = this.state = 1;
330 this.options.curAnim[ this.prop ] = true;
333 for ( var i in this.options.curAnim )
334 if ( this.options.curAnim[i] !== true )
338 if ( this.options.display != null ) {
339 // Reset the overflow
340 this.elem.style.overflow = this.options.overflow;
343 this.elem.style.display = this.options.display;
344 if ( jQuery.css(this.elem, "display") == "none" )
345 this.elem.style.display = "block";
348 // Hide the element if the "hide" operation was done
349 if ( this.options.hide )
350 this.elem.style.display = "none";
352 // Reset the properties, if the item has been hidden or shown
353 if ( this.options.hide || this.options.show )
354 for ( var p in this.options.curAnim )
355 jQuery.attr(this.elem.style, p, this.options.orig[p]);
358 // If a callback was provided, execute it
359 if ( done && jQuery.isFunction( this.options.complete ) )
360 // Execute the complete function
361 this.options.complete.apply( this.elem );
365 var n = t - this.startTime;
366 this.state = n / this.options.duration;
368 // Perform the easing function, defaults to swing
369 this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
370 this.now = this.start + ((this.end - this.start) * this.pos);
372 // Perform the next step of the animation
382 scrollLeft: function(fx){
383 fx.elem.scrollLeft = fx.now;
386 scrollTop: function(fx){
387 fx.elem.scrollTop = fx.now;
390 opacity: function(fx){
391 jQuery.attr(fx.elem.style, "opacity", fx.now);
394 _default: function(fx){
395 fx.elem.style[ fx.prop ] = fx.now + fx.unit;