div#tests div.noback {
background-image: none;
}
+
+div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
+div.chain div { position: absolute; top: 0px; left: 0px; }
+
+div.chain.test { background: red; }
+div.chain.test div { background: green; }
+
+div.chain.out { background: green; }
+div.chain.out div { background: red; display: none; }
</style>
<script>
var visible = {
});
});
});
+
+ // Chaining Tests
+ $('#fadein div').fadeOut('fast').fadeIn('fast');
+ $('#fadeout div').fadeIn('fast').fadeOut('fast');
+
+ $('#show div').hide('fast').show('fast');
+ $('#hide div').show('fast').hide('fast');
+
+ $('#togglein div').toggle('fast').toggle('fast');
+ $('#toggleout div').toggle('fast').toggle('fast');
+
+ $('#slidedown div').slideDown('fast').slideUp('fast');
+ $('#slideup div').slideUp('fast').slideDown('fast');
+
+ $('#slidetogglein div').slideToggle('fast').slideToggle('fast');
+ $('#slidetoggleout div').slideToggle('fast').slideToggle('fast');
});
function pass( elem ) {
</script>
</head>
<body>
+<b>Chain Tests:</b><br/>
+<div id="fadein" class='chain test'>fadeIn<div>fadeIn</div></div>
+<div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
+
+<div id="show" class='chain test'>show<div>show</div></div>
+<div id="hide" class='chain test out'>hide<div>hide</div></div>
+
+<div id="togglein" class='chain test'>togglein<div>togglein</div></div>
+<div id="toggleout" class='chain test out'>toggleout<div>toggleout</div></div>
+<br style="clear:both;"/>
+
+<div id="slideup" class='chain test'>slideUp<div>slideUp</div></div>
+<div id="slidedown" class='chain test out'>slideDown<div>slideDown</div></div>
+
+<div id="slidetogglein" class='chain test'>slideToggleIn<div>slideToggleIn</div></div>
+<div id="slidetoggleout" class='chain test out'>slideToggleOut<div>slideToggleOut</div></div>
+<br style="clear:both;"/>
+
<div id="tests"></div>
</body>
</html>
* @see hide(String|Number,Function)
*/
show: function(speed,callback){
- var hidden = this.filter(":hidden");
- speed ?
- hidden.animate({
+ return speed ?
+ this.animate({
height: "show", width: "show", opacity: "show"
}, speed, callback) :
- hidden.each(function(){
+ this.filter(":hidden").each(function(){
this.style.display = this.oldblock ? this.oldblock : "";
if ( jQuery.css(this,"display") == "none" )
this.style.display = "block";
- });
- return this;
+ }).end();
},
/**
* @see show(String|Number,Function)
*/
hide: function(speed,callback){
- var visible = this.filter(":visible");
- speed ?
- visible.animate({
+ return speed ?
+ this.animate({
height: "hide", width: "hide", opacity: "hide"
}, speed, callback) :
- visible.each(function(){
+ this.filter(":visible").each(function(){
this.oldblock = this.oldblock || jQuery.css(this,"display");
if ( this.oldblock == "none" )
this.oldblock = "block";
this.style.display = "none";
- });
- return this;
+ }).end();
},
// Save the old toggle function
* @cat Effects
*/
toggle: function( fn, fn2 ){
- var args = arguments;
return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
this._toggle( fn, fn2 ) :
- this.each(function(){
- jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]
- .apply( jQuery(this), args );
- });
+ this.animate({
+ height: "toggle", width: "toggle", opacity: "toggle"
+ }, fn, fn2);
},
/**
* @see slideToggle(String|Number,Function)
*/
slideDown: function(speed,callback){
- return this.filter(":hidden").animate({height: "show"}, speed, callback).end();
+ return this.animate({height: "show"}, speed, callback);
},
/**
* @see slideToggle(String|Number,Function)
*/
slideUp: function(speed,callback){
- return this.filter(":visible").animate({height: "hide"}, speed, callback).end();
+ return this.animate({height: "hide"}, speed, callback);
},
/**
* @see slideUp(String|Number,Function)
*/
slideToggle: function(speed, callback){
- return this.each(function(){
- var state = jQuery(this).is(":hidden") ? "show" : "hide";
- jQuery(this).animate({height: state}, speed, callback);
- });
+ return this.animate({height: "toggle"}, speed, callback);
},
/**
* @see fadeTo(String|Number,Number,Function)
*/
fadeIn: function(speed, callback){
- return this.filter(":hidden").animate({opacity: "show"}, speed, callback).end();
+ return this.animate({opacity: "show"}, speed, callback);
},
/**
* @see fadeTo(String|Number,Number,Function)
*/
fadeOut: function(speed, callback){
- return this.filter(":visible").animate({opacity: "hide"}, speed, callback).end();
+ return this.animate({opacity: "hide"}, speed, callback);
},
/**
*/
animate: function( prop, speed, easing, callback ) {
return this.queue(function(){
+ var hidden = jQuery(this).is(":hidden");
+
+ for ( var p in prop )
+ if ( prop[p] == "hide" && hidden ||
+ prop[p] == "show" && !hidden )
+ return;
this.curAnim = jQuery.extend({}, prop);
var opt = jQuery.speed(speed, easing, callback);
+ var self = this;
- for ( var p in prop ) {
- var e = new jQuery.fx( this, opt, p );
- if ( prop[p].constructor == Number )
- e.custom( e.cur(), prop[p] );
+ jQuery.each( prop, function(name, val){
+ var e = new jQuery.fx( self, opt, name );
+ if ( val.constructor == Number )
+ e.custom( e.cur(), val );
else
- e[ prop[p] ]( prop );
- }
-
+ e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
+ });
});
},
if ( jQuery.timers.length == 1 ) {
var timer = setInterval(function(){
- jQuery.timers = jQuery.grep( jQuery.timers, function(fn){
- return fn();
- });
+ var timers = jQuery.timers;
+
+ for ( var i = 0; i < timers.length; i++ )
+ if ( !timers[i]() )
+ timers.splice(i--, 1);
- if ( !jQuery.timers.length )
+ if ( !timers.length )
clearInterval( timer );
}, 13);
}
// Begin the animation
z.custom(0, this.cur());
- // Stupid IE, look what you made me do
+ // Make sure that we start at a small width/height to avoid any
+ // flash of content
if ( prop != "opacity" )
y[prop] = "1px";
+
+ // Start by showing the element
+ jQuery(elem).show();
};
// Simple 'hide' function
// Begin the animation
z.custom(this.cur(), 0);
};
-
- //Simple 'toggle' function
- z.toggle = function() {
- if ( !elem.orig ) elem.orig = {};
-
- // Remember where we started, so that we can go back to it later
- elem.orig[prop] = jQuery.attr( elem.style, prop );
-
- if(oldDisplay == "none") {
- options.show = true;
-
- // Stupid IE, look what you made me do
- if ( prop != "opacity" )
- y[prop] = "1px";
-
- // Begin the animation
- z.custom(0, this.cur());
- } else {
- options.hide = true;
-
- // Begin the animation
- z.custom(this.cur(), 0);
- }
- };
// Each step of an animation
z.step = function(firstNum, lastNum){
done = false;
if ( done ) {
- if ( oldDisplay ) {
+ if ( oldDisplay != null ) {
// Reset the overflow
y.overflow = oldOverflow;
// Reset the display
y.display = oldDisplay;
- if (jQuery.css(elem, "display") == "none")
+ if ( jQuery.css(elem, "display") == "none" )
y.display = "block";
}
// Hide the element if the "hide" operation was done
- if ( options.hide )
+ if ( options.hide )
y.display = "none";
// Reset the properties, if the item has been hidden or shown