2007-01-07 21:43:38 +00:00
|
|
|
jQuery.fn.extend({
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays each of the set of matched elements if they are hidden.
|
|
|
|
*
|
|
|
|
* @example $("p").show()
|
|
|
|
* @before <p style="display: none">Hello</p>
|
|
|
|
* @result [ <p style="display: block">Hello</p> ]
|
|
|
|
*
|
|
|
|
* @name show
|
|
|
|
* @type jQuery
|
|
|
|
* @cat Effects
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show all matched elements using a graceful animation and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* The height, width, and opacity of each of the matched elements
|
|
|
|
* are changed dynamically according to the specified speed.
|
|
|
|
*
|
|
|
|
* @example $("p").show("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").show("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name show
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see hide(String|Number,Function)
|
|
|
|
*/
|
|
|
|
show: function(speed,callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return speed ?
|
|
|
|
this.animate({
|
2007-01-07 21:43:38 +00:00
|
|
|
height: "show", width: "show", opacity: "show"
|
|
|
|
}, speed, callback) :
|
|
|
|
|
2007-05-20 08:40:13 +00:00
|
|
|
this.filter(":hidden").each(function(){
|
2007-01-07 21:43:38 +00:00
|
|
|
this.style.display = this.oldblock ? this.oldblock : "";
|
|
|
|
if ( jQuery.css(this,"display") == "none" )
|
|
|
|
this.style.display = "block";
|
2007-05-20 08:40:13 +00:00
|
|
|
}).end();
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides each of the set of matched elements if they are shown.
|
|
|
|
*
|
|
|
|
* @example $("p").hide()
|
|
|
|
* @before <p>Hello</p>
|
|
|
|
* @result [ <p style="display: none">Hello</p> ]
|
|
|
|
*
|
|
|
|
* @name hide
|
|
|
|
* @type jQuery
|
|
|
|
* @cat Effects
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide all matched elements using a graceful animation and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* The height, width, and opacity of each of the matched elements
|
|
|
|
* are changed dynamically according to the specified speed.
|
|
|
|
*
|
|
|
|
* @example $("p").hide("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").hide("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name hide
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see show(String|Number,Function)
|
|
|
|
*/
|
|
|
|
hide: function(speed,callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return speed ?
|
|
|
|
this.animate({
|
2007-01-07 21:43:38 +00:00
|
|
|
height: "hide", width: "hide", opacity: "hide"
|
|
|
|
}, speed, callback) :
|
|
|
|
|
2007-05-20 08:40:13 +00:00
|
|
|
this.filter(":visible").each(function(){
|
2007-01-07 21:43:38 +00:00
|
|
|
this.oldblock = this.oldblock || jQuery.css(this,"display");
|
|
|
|
if ( this.oldblock == "none" )
|
|
|
|
this.oldblock = "block";
|
|
|
|
this.style.display = "none";
|
2007-05-20 08:40:13 +00:00
|
|
|
}).end();
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Save the old toggle function
|
|
|
|
_toggle: jQuery.fn.toggle,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggles each of the set of matched elements. If they are shown,
|
|
|
|
* toggle makes them hidden. If they are hidden, toggle
|
|
|
|
* makes them shown.
|
|
|
|
*
|
|
|
|
* @example $("p").toggle()
|
|
|
|
* @before <p>Hello</p><p style="display: none">Hello Again</p>
|
|
|
|
* @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
|
|
|
|
*
|
|
|
|
* @name toggle
|
|
|
|
* @type jQuery
|
|
|
|
* @cat Effects
|
|
|
|
*/
|
|
|
|
toggle: function( fn, fn2 ){
|
2007-01-14 06:22:20 +00:00
|
|
|
return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
|
2007-01-07 21:43:38 +00:00
|
|
|
this._toggle( fn, fn2 ) :
|
2007-06-21 02:52:53 +00:00
|
|
|
fn ?
|
|
|
|
this.animate({
|
|
|
|
height: "toggle", width: "toggle", opacity: "toggle"
|
|
|
|
}, fn, fn2) :
|
|
|
|
this.each(function(){
|
|
|
|
jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]();
|
|
|
|
});
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reveal all matched elements by adjusting their height and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the height is adjusted for this animation, causing all matched
|
|
|
|
* elements to be revealed in a "sliding" manner.
|
|
|
|
*
|
|
|
|
* @example $("p").slideDown("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").slideDown("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name slideDown
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number speed (optional) 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see slideUp(String|Number,Function)
|
|
|
|
* @see slideToggle(String|Number,Function)
|
|
|
|
*/
|
|
|
|
slideDown: function(speed,callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return this.animate({height: "show"}, speed, callback);
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide all matched elements by adjusting their height and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the height is adjusted for this animation, causing all matched
|
|
|
|
* elements to be hidden in a "sliding" manner.
|
|
|
|
*
|
|
|
|
* @example $("p").slideUp("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").slideUp("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name slideUp
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number speed (optional) 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see slideDown(String|Number,Function)
|
|
|
|
* @see slideToggle(String|Number,Function)
|
|
|
|
*/
|
|
|
|
slideUp: function(speed,callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return this.animate({height: "hide"}, speed, callback);
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle the visibility of all matched elements by adjusting their height and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the height is adjusted for this animation, causing all matched
|
|
|
|
* elements to be hidden in a "sliding" manner.
|
|
|
|
*
|
|
|
|
* @example $("p").slideToggle("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").slideToggle("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name slideToggle
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number speed (optional) 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see slideDown(String|Number,Function)
|
|
|
|
* @see slideUp(String|Number,Function)
|
|
|
|
*/
|
|
|
|
slideToggle: function(speed, callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return this.animate({height: "toggle"}, speed, callback);
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fade in all matched elements by adjusting their opacity and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the opacity is adjusted for this animation, meaning that
|
|
|
|
* all of the matched elements should already have some form of height
|
|
|
|
* and width associated with them.
|
|
|
|
*
|
|
|
|
* @example $("p").fadeIn("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").fadeIn("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name fadeIn
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number speed (optional) 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see fadeOut(String|Number,Function)
|
|
|
|
* @see fadeTo(String|Number,Number,Function)
|
|
|
|
*/
|
|
|
|
fadeIn: function(speed, callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return this.animate({opacity: "show"}, speed, callback);
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fade out all matched elements by adjusting their opacity and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the opacity is adjusted for this animation, meaning that
|
|
|
|
* all of the matched elements should already have some form of height
|
|
|
|
* and width associated with them.
|
|
|
|
*
|
|
|
|
* @example $("p").fadeOut("slow");
|
|
|
|
*
|
|
|
|
* @example $("p").fadeOut("slow",function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name fadeOut
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number speed (optional) 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).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see fadeIn(String|Number,Function)
|
|
|
|
* @see fadeTo(String|Number,Number,Function)
|
|
|
|
*/
|
|
|
|
fadeOut: function(speed, callback){
|
2007-05-20 08:40:13 +00:00
|
|
|
return this.animate({opacity: "hide"}, speed, callback);
|
2007-01-07 21:43:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fade the opacity of all matched elements to a specified opacity and firing an
|
|
|
|
* optional callback after completion.
|
|
|
|
*
|
|
|
|
* Only the opacity is adjusted for this animation, meaning that
|
|
|
|
* all of the matched elements should already have some form of height
|
|
|
|
* and width associated with them.
|
|
|
|
*
|
|
|
|
* @example $("p").fadeTo("slow", 0.5);
|
|
|
|
*
|
|
|
|
* @example $("p").fadeTo("slow", 0.5, function(){
|
|
|
|
* alert("Animation Done.");
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
* @name fadeTo
|
|
|
|
* @type jQuery
|
|
|
|
* @param String|Number 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).
|
|
|
|
* @param Number opacity The opacity to fade to (a number from 0 to 1).
|
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
* @see fadeIn(String|Number,Function)
|
|
|
|
* @see fadeOut(String|Number,Function)
|
|
|
|
*/
|
|
|
|
fadeTo: function(speed,to,callback){
|
|
|
|
return this.animate({opacity: to}, speed, callback);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2007-02-27 21:44:57 +00:00
|
|
|
* A function for making your own, custom animations. The key aspect of
|
2007-01-07 21:43:38 +00:00
|
|
|
* this function is the object of style properties that will be animated,
|
|
|
|
* and to what end. Each key within the object represents a style property
|
|
|
|
* that will also be animated (for example: "height", "top", or "opacity").
|
|
|
|
*
|
2007-02-27 21:44:57 +00:00
|
|
|
* Note that properties should be specified using camel case
|
|
|
|
* eg. marginLeft instead of margin-left.
|
|
|
|
*
|
2007-01-07 21:43:38 +00:00
|
|
|
* The value associated with the key represents to what end the property
|
|
|
|
* will be animated. If a number is provided as the value, then the style
|
|
|
|
* property will be transitioned from its current state to that new number.
|
2007-02-27 21:44:57 +00:00
|
|
|
* Otherwise if the string "hide", "show", or "toggle" is provided, a default
|
2007-01-07 21:43:38 +00:00
|
|
|
* animation will be constructed for that property.
|
|
|
|
*
|
|
|
|
* @example $("p").animate({
|
|
|
|
* height: 'toggle', opacity: 'toggle'
|
|
|
|
* }, "slow");
|
|
|
|
*
|
|
|
|
* @example $("p").animate({
|
|
|
|
* left: 50, opacity: 'show'
|
2007-01-07 19:56:29 +00:00
|
|
|
* }, 500);
|
|
|
|
*
|
2007-01-07 21:43:38 +00:00
|
|
|
* @example $("p").animate({
|
|
|
|
* opacity: 'show'
|
2007-01-07 19:56:29 +00:00
|
|
|
* }, "slow", "easein");
|
2007-05-22 07:05:32 +00:00
|
|
|
* @desc An example of using an 'easing' function to provide a different style of animation. This will only work if you have a plugin that provides this easing function (Only "swing" and "linear" are provided by default, with jQuery).
|
2007-01-07 21:43:38 +00:00
|
|
|
*
|
|
|
|
* @name animate
|
|
|
|
* @type jQuery
|
|
|
|
* @param Hash params A set of style attributes that you wish to animate, and to what end.
|
2007-01-07 19:56:29 +00:00
|
|
|
* @param String|Number speed (optional) 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).
|
2007-05-22 07:05:32 +00:00
|
|
|
* @param String easing (optional) The name of the easing effect that you want to use (e.g. "swing" or "linear"). Defaults to "swing".
|
2007-01-07 21:43:38 +00:00
|
|
|
* @param Function callback (optional) A function to be executed whenever the animation completes.
|
|
|
|
* @cat Effects
|
|
|
|
*/
|
|
|
|
animate: function( prop, speed, easing, callback ) {
|
|
|
|
return this.queue(function(){
|
2007-06-21 02:38:16 +00:00
|
|
|
var hidden = jQuery(this).is(":hidden"),
|
|
|
|
opt = jQuery.speed(speed, easing, callback),
|
|
|
|
self = this;
|
2007-05-20 08:40:13 +00:00
|
|
|
|
2007-07-05 04:27:46 +00:00
|
|
|
for ( var p in prop ) {
|
2007-06-21 02:38:16 +00:00
|
|
|
if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
|
|
|
|
return jQuery.isFunction(opt.complete) && opt.complete.apply(this);
|
2007-06-21 03:09:04 +00:00
|
|
|
|
2007-07-05 04:27:46 +00:00
|
|
|
if ( p == "height" || p == "width" ) {
|
|
|
|
// Store display property
|
|
|
|
opt.display = jQuery.css(this, "display");
|
|
|
|
|
|
|
|
// Make sure that nothing sneaks out
|
|
|
|
opt.overflow = this.style.overflow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( opt.overflow != null )
|
|
|
|
this.style.overflow = "hidden";
|
|
|
|
|
2007-01-07 00:28:31 +00:00
|
|
|
this.curAnim = jQuery.extend({}, prop);
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-05-20 08:40:13 +00:00
|
|
|
jQuery.each( prop, function(name, val){
|
|
|
|
var e = new jQuery.fx( self, opt, name );
|
|
|
|
if ( val.constructor == Number )
|
|
|
|
e.custom( e.cur(), val );
|
2007-01-07 21:43:38 +00:00
|
|
|
else
|
2007-05-20 08:40:13 +00:00
|
|
|
e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
|
|
|
|
});
|
2007-01-07 21:43:38 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
queue: function(type,fn){
|
|
|
|
if ( !fn ) {
|
|
|
|
fn = type;
|
|
|
|
type = "fx";
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.each(function(){
|
|
|
|
if ( !this.queue )
|
|
|
|
this.queue = {};
|
|
|
|
|
|
|
|
if ( !this.queue[type] )
|
|
|
|
this.queue[type] = [];
|
|
|
|
|
|
|
|
this.queue[type].push( fn );
|
|
|
|
|
|
|
|
if ( this.queue[type].length == 1 )
|
|
|
|
fn.apply(this);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.extend({
|
|
|
|
|
|
|
|
speed: function(speed, easing, fn) {
|
2007-01-10 00:46:10 +00:00
|
|
|
var opt = speed && speed.constructor == Object ? speed : {
|
2007-01-07 00:28:31 +00:00
|
|
|
complete: fn || !fn && easing ||
|
2007-01-14 06:22:20 +00:00
|
|
|
jQuery.isFunction( speed ) && speed,
|
2007-01-07 00:28:31 +00:00
|
|
|
duration: speed,
|
2007-07-20 20:05:20 +00:00
|
|
|
easing: fn && easing || easing && easing.constructor != Function && easing
|
2007-01-07 00:28:31 +00:00
|
|
|
};
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-01-10 01:06:22 +00:00
|
|
|
opt.duration = (opt.duration && opt.duration.constructor == Number ?
|
2007-01-07 00:28:31 +00:00
|
|
|
opt.duration :
|
2007-01-07 21:43:38 +00:00
|
|
|
{ slow: 600, fast: 200 }[opt.duration]) || 400;
|
|
|
|
|
|
|
|
// Queueing
|
2007-01-14 06:22:20 +00:00
|
|
|
opt.old = opt.complete;
|
2007-01-07 21:43:38 +00:00
|
|
|
opt.complete = function(){
|
|
|
|
jQuery.dequeue(this, "fx");
|
2007-01-14 06:22:20 +00:00
|
|
|
if ( jQuery.isFunction( opt.old ) )
|
|
|
|
opt.old.apply( this );
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return opt;
|
|
|
|
},
|
|
|
|
|
2007-03-24 03:12:12 +00:00
|
|
|
easing: {
|
|
|
|
linear: function( p, n, firstNum, diff ) {
|
|
|
|
return firstNum + diff * p;
|
|
|
|
},
|
|
|
|
swing: function( p, n, firstNum, diff ) {
|
|
|
|
return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
|
|
|
|
}
|
|
|
|
},
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
queue: {},
|
|
|
|
|
|
|
|
dequeue: function(elem,type){
|
|
|
|
type = type || "fx";
|
|
|
|
|
|
|
|
if ( elem.queue && elem.queue[type] ) {
|
|
|
|
// Remove self
|
|
|
|
elem.queue[type].shift();
|
|
|
|
|
|
|
|
// Get next function
|
|
|
|
var f = elem.queue[type][0];
|
|
|
|
|
|
|
|
if ( f ) f.apply( elem );
|
|
|
|
}
|
2007-01-07 00:28:31 +00:00
|
|
|
},
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-03-17 02:02:01 +00:00
|
|
|
timers: [],
|
|
|
|
|
2007-01-07 21:43:38 +00:00
|
|
|
/*
|
|
|
|
* I originally wrote fx() as a clone of moo.fx and in the process
|
|
|
|
* of making it small in size the code became illegible to sane
|
|
|
|
* people. You've been warned.
|
|
|
|
*/
|
2007-01-07 00:28:31 +00:00
|
|
|
|
2007-01-07 21:43:38 +00:00
|
|
|
fx: function( elem, options, prop ){
|
|
|
|
|
|
|
|
var z = this;
|
|
|
|
|
|
|
|
// The styles
|
|
|
|
var y = elem.style;
|
|
|
|
|
|
|
|
// Simple function for setting a style value
|
|
|
|
z.a = function(){
|
|
|
|
if ( options.step )
|
|
|
|
options.step.apply( elem, [ z.now ] );
|
|
|
|
|
|
|
|
if ( prop == "opacity" )
|
|
|
|
jQuery.attr(y, "opacity", z.now); // Let attr handle opacity
|
2007-03-15 16:54:13 +00:00
|
|
|
else {
|
2007-01-07 21:43:38 +00:00
|
|
|
y[prop] = parseInt(z.now) + "px";
|
2007-07-15 02:42:11 +00:00
|
|
|
|
|
|
|
// Set display property to block for height/width animations
|
|
|
|
if ( prop == "height" || prop == "width" )
|
|
|
|
y.display = "block";
|
2007-03-15 16:54:13 +00:00
|
|
|
}
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Figure out the maximum number to run to
|
|
|
|
z.max = function(){
|
|
|
|
return parseFloat( jQuery.css(elem,prop) );
|
|
|
|
};
|
|
|
|
|
|
|
|
// Get the current size
|
|
|
|
z.cur = function(){
|
|
|
|
var r = parseFloat( jQuery.curCSS(elem, prop) );
|
|
|
|
return r && r > -10000 ? r : z.max();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Start an animation from one number to another
|
|
|
|
z.custom = function(from,to){
|
|
|
|
z.startTime = (new Date()).getTime();
|
|
|
|
z.now = from;
|
|
|
|
z.a();
|
|
|
|
|
2007-03-17 02:02:01 +00:00
|
|
|
jQuery.timers.push(function(){
|
|
|
|
return z.step(from, to);
|
|
|
|
});
|
|
|
|
|
|
|
|
if ( jQuery.timers.length == 1 ) {
|
|
|
|
var timer = setInterval(function(){
|
2007-05-20 08:40:13 +00:00
|
|
|
var timers = jQuery.timers;
|
|
|
|
|
|
|
|
for ( var i = 0; i < timers.length; i++ )
|
|
|
|
if ( !timers[i]() )
|
|
|
|
timers.splice(i--, 1);
|
2007-03-17 02:02:01 +00:00
|
|
|
|
2007-05-20 08:40:13 +00:00
|
|
|
if ( !timers.length )
|
2007-03-17 02:02:01 +00:00
|
|
|
clearInterval( timer );
|
|
|
|
}, 13);
|
|
|
|
}
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Simple 'show' function
|
|
|
|
z.show = function(){
|
|
|
|
if ( !elem.orig ) elem.orig = {};
|
|
|
|
|
|
|
|
// Remember where we started, so that we can go back to it later
|
2007-03-16 20:37:10 +00:00
|
|
|
elem.orig[prop] = jQuery.attr( elem.style, prop );
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
options.show = true;
|
|
|
|
|
|
|
|
// Begin the animation
|
2007-03-15 16:54:13 +00:00
|
|
|
z.custom(0, this.cur());
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-05-20 08:40:13 +00:00
|
|
|
// Make sure that we start at a small width/height to avoid any
|
|
|
|
// flash of content
|
2007-01-07 21:43:38 +00:00
|
|
|
if ( prop != "opacity" )
|
|
|
|
y[prop] = "1px";
|
2007-05-20 08:40:13 +00:00
|
|
|
|
|
|
|
// Start by showing the element
|
|
|
|
jQuery(elem).show();
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Simple 'hide' function
|
|
|
|
z.hide = function(){
|
|
|
|
if ( !elem.orig ) elem.orig = {};
|
|
|
|
|
|
|
|
// Remember where we started, so that we can go back to it later
|
2007-03-16 20:37:10 +00:00
|
|
|
elem.orig[prop] = jQuery.attr( elem.style, prop );
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
options.hide = true;
|
|
|
|
|
|
|
|
// Begin the animation
|
2007-03-15 16:54:13 +00:00
|
|
|
z.custom(this.cur(), 0);
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Each step of an animation
|
|
|
|
z.step = function(firstNum, lastNum){
|
|
|
|
var t = (new Date()).getTime();
|
|
|
|
|
|
|
|
if (t > options.duration + z.startTime) {
|
|
|
|
z.now = lastNum;
|
|
|
|
z.a();
|
|
|
|
|
|
|
|
if (elem.curAnim) elem.curAnim[ prop ] = true;
|
|
|
|
|
|
|
|
var done = true;
|
|
|
|
for ( var i in elem.curAnim )
|
|
|
|
if ( elem.curAnim[i] !== true )
|
|
|
|
done = false;
|
|
|
|
|
|
|
|
if ( done ) {
|
2007-07-05 04:27:46 +00:00
|
|
|
if ( options.display != null ) {
|
2007-03-15 16:54:13 +00:00
|
|
|
// Reset the overflow
|
2007-07-05 04:27:46 +00:00
|
|
|
y.overflow = options.overflow;
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-03-15 16:54:13 +00:00
|
|
|
// Reset the display
|
2007-07-05 04:27:46 +00:00
|
|
|
y.display = options.display;
|
2007-05-20 08:40:13 +00:00
|
|
|
if ( jQuery.css(elem, "display") == "none" )
|
2007-03-15 16:54:13 +00:00
|
|
|
y.display = "block";
|
|
|
|
}
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
// Hide the element if the "hide" operation was done
|
2007-05-20 08:40:13 +00:00
|
|
|
if ( options.hide )
|
2007-01-14 06:22:20 +00:00
|
|
|
y.display = "none";
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
// Reset the properties, if the item has been hidden or shown
|
|
|
|
if ( options.hide || options.show )
|
|
|
|
for ( var p in elem.curAnim )
|
2007-03-15 16:54:13 +00:00
|
|
|
jQuery.attr(y, p, elem.orig[p]);
|
2007-01-07 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If a callback was provided, execute it
|
2007-01-14 06:22:20 +00:00
|
|
|
if ( done && jQuery.isFunction( options.complete ) )
|
2007-01-07 21:43:38 +00:00
|
|
|
// Execute the complete function
|
|
|
|
options.complete.apply( elem );
|
2007-03-17 02:02:01 +00:00
|
|
|
|
|
|
|
return false;
|
2007-01-07 21:43:38 +00:00
|
|
|
} else {
|
|
|
|
var n = t - this.startTime;
|
|
|
|
// Figure out where in the animation we are and set the number
|
2007-01-07 00:28:31 +00:00
|
|
|
var p = n / options.duration;
|
2007-01-07 21:43:38 +00:00
|
|
|
|
2007-03-24 03:12:12 +00:00
|
|
|
// Perform the easing function, defaults to swing
|
2007-07-20 20:05:20 +00:00
|
|
|
z.now = jQuery.easing[options.easing || (jQuery.easing.swing ? "swing" : "linear")](p, n, firstNum, (lastNum-firstNum), options.duration);
|
2007-01-07 21:43:38 +00:00
|
|
|
|
|
|
|
// Perform the next step of the animation
|
|
|
|
z.a();
|
|
|
|
}
|
2007-03-17 02:02:01 +00:00
|
|
|
|
|
|
|
return true;
|
2007-01-07 21:43:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|