jquery-ui/ui/jquery.effects.core.js

731 lines
19 KiB
JavaScript
Raw Normal View History

/*!
2008-06-09 08:55:06 +00:00
* jQuery UI Effects @VERSION
*
2012-03-08 15:53:08 +00:00
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/
*/
2012-04-02 23:12:21 +00:00
;(jQuery.effects || (function($, undefined) {
2008-05-23 09:26:18 +00:00
2012-04-02 23:12:21 +00:00
var backCompat = $.uiBackCompat !== false,
// prefix used for storing data on .data()
dataSpace = "ui-effects-";
$.effects = {
effect: {}
};
2009-01-22 13:10:18 +00:00
/******************************************************************************/
/****************************** COLOR ANIMATIONS ******************************/
/******************************************************************************/
2012-04-02 23:12:21 +00:00
(function() {
// override the animation for color styles
$.each(["backgroundColor", "borderBottomColor", "borderLeftColor",
"borderRightColor", "borderTopColor", "borderColor", "color", "outlineColor"],
function(i, attr) {
$.fx.step[attr] = function(fx) {
if (!fx.colorInit) {
fx.start = getColor(fx.elem, attr);
fx.end = getRGB(fx.end);
fx.colorInit = true;
}
2009-01-22 13:10:18 +00:00
fx.elem.style[attr] = "rgb(" +
Math.max(Math.min(parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0], 10), 255), 0) + "," +
Math.max(Math.min(parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1], 10), 255), 0) + "," +
Math.max(Math.min(parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2], 10), 255), 0) + ")";
};
});
2009-01-22 13:10:18 +00:00
// Color Conversion functions from highlightFade
// By Blair Mitchelmore
// http://jquery.offput.ca/highlightFade/
2009-01-22 13:10:18 +00:00
// Parse strings looking for color tuples [255,255,255]
function getRGB(color) {
var result;
// Check if we're already dealing with an array of colors
2012-04-02 23:12:21 +00:00
if ( color && color.constructor === Array && color.length === 3 ) {
return color;
}
// Look for rgb(num,num,num)
2012-04-02 23:12:21 +00:00
if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)) {
return [parseInt(result[1],10), parseInt(result[2],10), parseInt(result[3],10)];
}
// Look for rgb(num%,num%,num%)
2012-04-02 23:12:21 +00:00
if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)) {
return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];
}
// Look for #a0b1c2
2012-04-02 23:12:21 +00:00
if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)) {
return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];
}
// Look for #fff
2012-04-02 23:12:21 +00:00
if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)) {
return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];
}
// Look for rgba(0, 0, 0, 0) == transparent in Safari 3
2012-04-02 23:12:21 +00:00
if (result = /rgba\(0, 0, 0, 0\)/.exec(color)) {
return colors.transparent;
}
// Otherwise, we're most likely dealing with a named color
return colors[$.trim(color).toLowerCase()];
}
function getColor(elem, attr) {
var color;
do {
color = $.css(elem, attr);
// Keep going until we find an element that has color, or we hit the body
2012-04-02 23:12:21 +00:00
if ( color && color !== "transparent" || $.nodeName(elem, "body") ) {
break;
}
attr = "backgroundColor";
} while ( elem = elem.parentNode );
return getRGB(color);
2012-04-02 23:12:21 +00:00
}
// Some named colors to work with
// From Interface by Stefan Petre
// http://interface.eyecon.ro/
var colors = {
aqua:[0,255,255],
azure:[240,255,255],
beige:[245,245,220],
black:[0,0,0],
blue:[0,0,255],
brown:[165,42,42],
cyan:[0,255,255],
darkblue:[0,0,139],
darkcyan:[0,139,139],
darkgrey:[169,169,169],
darkgreen:[0,100,0],
darkkhaki:[189,183,107],
darkmagenta:[139,0,139],
darkolivegreen:[85,107,47],
darkorange:[255,140,0],
darkorchid:[153,50,204],
darkred:[139,0,0],
darksalmon:[233,150,122],
darkviolet:[148,0,211],
fuchsia:[255,0,255],
gold:[255,215,0],
green:[0,128,0],
indigo:[75,0,130],
khaki:[240,230,140],
lightblue:[173,216,230],
lightcyan:[224,255,255],
lightgreen:[144,238,144],
lightgrey:[211,211,211],
lightpink:[255,182,193],
lightyellow:[255,255,224],
lime:[0,255,0],
magenta:[255,0,255],
maroon:[128,0,0],
navy:[0,0,128],
olive:[128,128,0],
orange:[255,165,0],
pink:[255,192,203],
purple:[128,0,128],
violet:[128,0,128],
red:[255,0,0],
silver:[192,192,192],
white:[255,255,255],
yellow:[255,255,0],
transparent: [255,255,255]
};
2012-04-02 23:12:21 +00:00
})();
/******************************************************************************/
/****************************** CLASS ANIMATIONS ******************************/
/******************************************************************************/
2012-04-02 23:12:21 +00:00
(function() {
var classAnimationActions = [ "add", "remove", "toggle" ],
shorthandStyles = {
border: 1,
borderBottom: 1,
borderColor: 1,
borderLeft: 1,
borderRight: 1,
borderTop: 1,
borderWidth: 1,
margin: 1,
padding: 1
2012-04-02 23:12:21 +00:00
};
$.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) {
$.fx.step[ prop ] = function( fx ) {
if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {
jQuery.style( fx.elem, prop, fx.end );
fx.setAttr = true;
}
};
});
function getElementStyles() {
2012-04-02 19:55:50 +00:00
var style = this.ownerDocument.defaultView ?
this.ownerDocument.defaultView.getComputedStyle( this, null ) :
this.currentStyle,
newStyle = {},
key,
2011-03-07 02:44:35 +00:00
camelCase,
len;
// webkit enumerates style porperties
2011-03-07 02:44:35 +00:00
if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {
len = style.length;
while ( len-- ) {
key = style[ len ];
if ( typeof style[ key ] === "string" ) {
newStyle[ $.camelCase( key ) ] = style[ key ];
}
}
} else {
2011-03-07 02:44:35 +00:00
for ( key in style ) {
if ( typeof style[ key ] === "string" ) {
2011-03-07 02:44:35 +00:00
newStyle[ key ] = style[ key ];
}
}
}
return newStyle;
}
2011-03-07 02:44:35 +00:00
function styleDifference( oldStyle, newStyle ) {
var diff = {},
name, value;
2011-03-07 02:44:35 +00:00
for ( name in newStyle ) {
value = newStyle[ name ];
2012-04-02 23:12:21 +00:00
if ( oldStyle[ name ] !== value ) {
if ( !shorthandStyles[ name ] ) {
if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {
diff[ name ] = value;
}
}
}
}
return diff;
}
2011-03-07 02:44:35 +00:00
$.effects.animateClass = function( value, duration, easing, callback ) {
var o = $.speed( duration, easing, callback );
return this.queue( function() {
var animated = $( this ),
baseClass = animated.attr( "class" ) || "",
applyClassChange,
allAnimations = o.children ? animated.find( "*" ).andSelf() : animated;
// map the animated objects to store the original styles.
allAnimations = allAnimations.map(function() {
var el = $( this );
return {
el: el,
start: getElementStyles.call( this )
};
});
// apply class change
applyClassChange = function() {
$.each( classAnimationActions, function(i, action) {
if ( value[ action ] ) {
animated[ action + "Class" ]( value[ action ] );
}
});
};
applyClassChange();
// map all animated objects again - calculate new styles and diff
allAnimations = allAnimations.map(function() {
this.end = getElementStyles.call( this.el[ 0 ] );
this.diff = styleDifference( this.start, this.end );
return this;
});
// apply original class
animated.attr( "class", baseClass );
// map all animated objects again - this time collecting a promise
allAnimations = allAnimations.map(function() {
var styleInfo = this,
dfd = $.Deferred(),
opts = jQuery.extend({}, o, {
queue: false,
complete: function() {
dfd.resolve( styleInfo );
}
});
this.el.animate( this.diff, opts );
return dfd.promise();
});
// once all animations have completed:
$.when.apply( $, allAnimations.get() ).done(function() {
// set the final class
applyClassChange();
// for each animated element,
// clear all css properties that were animated
$.each( arguments, function() {
var el = this.el;
$.each( this.diff, function(key) {
el.css( key, '' );
});
});
// this is guarnteed to be there if you use jQuery.speed()
// it also handles dequeuing the next anim...
o.complete.call( animated[ 0 ] );
});
});
};
$.fn.extend({
_addClass: $.fn.addClass,
2011-03-07 02:44:35 +00:00
addClass: function( classNames, speed, easing, callback ) {
return speed ?
2011-03-07 02:44:35 +00:00
$.effects.animateClass.apply( this, [{ add: classNames }, speed, easing, callback ]) :
this._addClass(classNames);
},
_removeClass: $.fn.removeClass,
2011-03-07 02:44:35 +00:00
removeClass: function( classNames, speed, easing, callback ) {
return speed ?
2011-03-07 02:44:35 +00:00
$.effects.animateClass.apply( this, [{ remove: classNames }, speed, easing, callback ]) :
this._removeClass(classNames);
},
_toggleClass: $.fn.toggleClass,
2011-03-07 02:44:35 +00:00
toggleClass: function( classNames, force, speed, easing, callback ) {
if ( typeof force === "boolean" || force === undefined ) {
if ( !speed ) {
// without speed parameter;
2011-03-07 02:44:35 +00:00
return this._toggleClass( classNames, force );
} else {
2011-03-07 02:44:35 +00:00
return $.effects.animateClass.apply( this, [( force ? { add:classNames } : { remove:classNames }), speed, easing, callback ]);
}
} else {
// without force parameter;
2011-03-07 02:44:35 +00:00
return $.effects.animateClass.apply( this, [{ toggle: classNames }, force, speed, easing ]);
}
},
2011-03-07 02:44:35 +00:00
switchClass: function( remove, add, speed, easing, callback) {
return $.effects.animateClass.apply( this, [{
add: add,
remove: remove
2011-03-07 02:44:35 +00:00
}, speed, easing, callback ]);
}
});
2012-04-02 23:12:21 +00:00
})();
/******************************************************************************/
/*********************************** EFFECTS **********************************/
/******************************************************************************/
2012-04-02 23:12:21 +00:00
(function() {
2011-03-07 02:44:35 +00:00
$.extend( $.effects, {
version: "@VERSION",
// Saves a set of properties in a data storage
2011-03-07 02:44:35 +00:00
save: function( element, set ) {
for( var i=0; i < set.length; i++ ) {
if ( set[ i ] !== null ) {
element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );
2011-03-07 02:44:35 +00:00
}
}
},
// Restores a set of previously saved properties from a data storage
2011-03-07 02:44:35 +00:00
restore: function( element, set ) {
for( var i=0; i < set.length; i++ ) {
if ( set[ i ] !== null ) {
element.css( set[ i ], element.data( dataSpace + set[ i ] ) );
2011-03-07 02:44:35 +00:00
}
}
},
2011-03-07 02:44:35 +00:00
setMode: function( el, mode ) {
if (mode === "toggle") {
mode = el.is( ":hidden" ) ? "show" : "hide";
2011-03-07 02:44:35 +00:00
}
return mode;
},
2011-03-07 02:44:35 +00:00
// Translates a [top,left] array into a baseline value
// this should be a little more flexible in the future to handle a string & hash
getBaseline: function( origin, original ) {
var y, x;
2011-03-07 02:44:35 +00:00
switch ( origin[ 0 ] ) {
case "top": y = 0; break;
case "middle": y = 0.5; break;
case "bottom": y = 1; break;
2011-03-07 02:44:35 +00:00
default: y = origin[ 0 ] / original.height;
2012-04-02 19:55:50 +00:00
}
2011-03-07 02:44:35 +00:00
switch ( origin[ 1 ] ) {
case "left": x = 0; break;
case "center": x = 0.5; break;
case "right": x = 1; break;
2011-03-07 02:44:35 +00:00
default: x = origin[ 1 ] / original.width;
2012-04-02 19:55:50 +00:00
}
2011-03-07 02:44:35 +00:00
return {
x: x,
y: y
};
},
// Wraps the element around a wrapper that copies position properties
2011-03-07 02:44:35 +00:00
createWrapper: function( element ) {
2009-11-10 16:35:55 +00:00
// if the element is already wrapped, return it
if ( element.parent().is( ".ui-effects-wrapper" )) {
return element.parent();
2009-11-10 16:35:55 +00:00
}
2009-11-10 16:35:55 +00:00
// wrap the element
var props = {
width: element.outerWidth(true),
height: element.outerHeight(true),
"float": element.css( "float" )
2009-11-10 16:35:55 +00:00
},
wrapper = $( "<div></div>" )
.addClass( "ui-effects-wrapper" )
2009-11-10 16:35:55 +00:00
.css({
fontSize: "100%",
background: "transparent",
border: "none",
2009-11-10 16:35:55 +00:00
margin: 0,
padding: 0
}),
// Store the size in case width/height are defined in % - Fixes #5245
size = {
width: element.width(),
height: element.height()
},
active = document.activeElement;
2011-03-07 02:44:35 +00:00
element.wrap( wrapper );
// Fixes #7595 - Elements lose focus when wrapped.
if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
$( active ).focus();
}
2011-08-10 20:01:44 +00:00
wrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually lose the reference to the wrapped element
2009-11-10 16:35:55 +00:00
// transfer positioning properties to the wrapper
if ( element.css( "position" ) === "static" ) {
wrapper.css({ position: "relative" });
element.css({ position: "relative" });
} else {
2011-03-07 02:44:35 +00:00
$.extend( props, {
position: element.css( "position" ),
zIndex: element.css( "z-index" )
2009-11-10 16:35:55 +00:00
});
$.each([ "top", "left", "bottom", "right" ], function(i, pos) {
2011-03-07 02:44:35 +00:00
props[ pos ] = element.css( pos );
if ( isNaN( parseInt( props[ pos ], 10 ) ) ) {
props[ pos ] = "auto";
}
});
2011-03-07 02:44:35 +00:00
element.css({
position: "relative",
2011-03-07 02:44:35 +00:00
top: 0,
left: 0,
right: "auto",
bottom: "auto"
2011-03-07 02:44:35 +00:00
});
}
element.css(size);
2011-03-07 02:44:35 +00:00
return wrapper.css( props ).show();
},
2011-03-07 02:44:35 +00:00
removeWrapper: function( element ) {
var active = document.activeElement;
if ( element.parent().is( ".ui-effects-wrapper" ) ) {
element.parent().replaceWith( element );
// Fixes #7595 - Elements lose focus when wrapped.
if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
$( active ).focus();
}
}
return element;
},
2011-03-07 02:44:35 +00:00
setTransition: function( element, list, factor, value ) {
value = value || {};
2012-04-02 23:12:21 +00:00
$.each( list, function( i, x ) {
var unit = element.cssUnit( x );
2012-04-02 23:12:21 +00:00
if ( unit[ 0 ] > 0 ) {
value[ x ] = unit[ 0 ] * factor + unit[ 1 ];
}
});
return value;
}
});
// return an effect options object for the given parameters:
function _normalizeArguments( effect, options, speed, callback ) {
// allow passing all optinos as the first parameter
if ( $.isPlainObject( effect ) ) {
options = effect;
effect = effect.effect;
}
// convert to an object
effect = { effect: effect };
// catch (effect)
if ( options === undefined ) {
options = {};
}
// catch (effect, callback)
if ( $.isFunction( options ) ) {
callback = options;
speed = null;
options = {};
}
// catch (effect, speed, ?)
if ( typeof options === "number" || $.fx.speeds[ options ] ) {
callback = speed;
speed = options;
options = {};
}
// catch (effect, options, callback)
if ( $.isFunction( speed ) ) {
callback = speed;
speed = null;
}
// add options to effect
if ( options ) {
$.extend( effect, options );
}
speed = speed || options.duration;
2012-04-02 19:55:50 +00:00
effect.duration = $.fx.off ? 0 :
typeof speed === "number" ? speed :
speed in $.fx.speeds ? $.fx.speeds[ speed ] :
$.fx.speeds._default;
effect.complete = callback || options.complete;
return effect;
}
function standardSpeed( speed ) {
// valid standard speeds
if ( !speed || typeof speed === "number" || $.fx.speeds[ speed ] ) {
return true;
}
// invalid strings - treat as "normal" speed
if ( typeof speed === "string" && !$.effects.effect[ speed ] ) {
// TODO: remove in 2.0 (#7115)
if ( backCompat && $.effects[ speed ] ) {
return false;
}
return true;
}
return false;
}
$.fn.extend({
2011-03-07 02:44:35 +00:00
effect: function( effect, options, speed, callback ) {
var args = _normalizeArguments.apply( this, arguments ),
mode = args.mode,
queue = args.queue,
effectMethod = $.effects.effect[ args.effect ],
// DEPRECATED: remove in 2.0 (#7115)
oldEffectMethod = !effectMethod && backCompat && $.effects[ args.effect ];
if ( $.fx.off || !( effectMethod || oldEffectMethod ) ) {
// delegate to the original method (e.g., .show()) if possible
if ( mode ) {
return this[ mode ]( args.duration, args.complete );
} else {
2011-03-07 02:44:35 +00:00
return this.each( function() {
if ( args.complete ) {
args.complete.call( this );
}
});
}
}
function run( next ) {
var elem = $( this ),
complete = args.complete,
mode = args.mode;
function done() {
if ( $.isFunction( complete ) ) {
complete.call( elem[0] );
}
if ( $.isFunction( next ) ) {
next();
}
}
// if the element is hiddden and mode is hide,
// or element is visible and mode is show
if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) {
done();
} else {
effectMethod.call( elem[0], args, done );
}
}
// TODO: remove this check in 2.0, effectMethod will always be true
if ( effectMethod ) {
return queue === false ? this.each( run ) : this.queue( queue || "fx", run );
} else {
// DEPRECATED: remove in 2.0 (#7115)
return oldEffectMethod.call(this, {
options: args,
duration: args.duration,
callback: args.complete,
mode: args.mode
});
}
},
2009-01-22 13:10:18 +00:00
_show: $.fn.show,
2011-03-07 02:44:35 +00:00
show: function( speed ) {
if ( standardSpeed( speed ) ) {
2011-03-07 02:44:35 +00:00
return this._show.apply( this, arguments );
} else {
2011-03-07 02:44:35 +00:00
var args = _normalizeArguments.apply( this, arguments );
args.mode = "show";
2011-03-07 02:44:35 +00:00
return this.effect.call( this, args );
}
},
2009-01-22 13:10:18 +00:00
_hide: $.fn.hide,
2011-03-07 02:44:35 +00:00
hide: function( speed ) {
if ( standardSpeed( speed ) ) {
2011-03-07 02:44:35 +00:00
return this._hide.apply( this, arguments );
} else {
2011-03-07 02:44:35 +00:00
var args = _normalizeArguments.apply( this, arguments );
args.mode = "hide";
2011-03-07 02:44:35 +00:00
return this.effect.call( this, args );
}
},
2009-01-22 13:10:18 +00:00
// jQuery core overloads toggle and creates _toggle
__toggle: $.fn.toggle,
2011-03-07 02:44:35 +00:00
toggle: function( speed ) {
if ( standardSpeed( speed ) || typeof speed === "boolean" || $.isFunction( speed ) ) {
2011-03-07 02:44:35 +00:00
return this.__toggle.apply( this, arguments );
} else {
2011-03-07 02:44:35 +00:00
var args = _normalizeArguments.apply( this, arguments );
args.mode = "toggle";
2011-03-07 02:44:35 +00:00
return this.effect.call( this, args );
}
},
2009-01-22 13:10:18 +00:00
// helper functions
cssUnit: function(key) {
2011-03-07 02:44:35 +00:00
var style = this.css( key ),
val = [];
$.each( [ "em", "px", "%", "pt" ], function( i, unit ) {
2012-04-02 23:12:21 +00:00
if ( style.indexOf( unit ) > 0 ) {
2011-03-07 02:44:35 +00:00
val = [ parseFloat( style ), unit ];
2012-04-02 23:12:21 +00:00
}
});
return val;
}
});
2012-04-02 23:12:21 +00:00
})();
/******************************************************************************/
/*********************************** EASING ***********************************/
/******************************************************************************/
2012-04-02 23:12:21 +00:00
(function() {
// based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
2008-05-23 09:26:18 +00:00
var baseEasings = {};
2008-05-23 09:26:18 +00:00
$.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) {
baseEasings[ name ] = function( p ) {
return Math.pow( p, i + 2 );
};
});
$.extend( baseEasings, {
Sine: function ( p ) {
return 1 - Math.cos( p * Math.PI / 2 );
2011-03-07 02:44:35 +00:00
},
Circ: function ( p ) {
return 1 - Math.sqrt( 1 - p * p );
2011-03-07 02:44:35 +00:00
},
Elastic: function( p ) {
return p === 0 || p === 1 ? p :
-Math.pow( 2, 8 * (p - 1) ) * Math.sin( ( (p - 1) * 80 - 7.5 ) * Math.PI / 15 );
2011-03-07 02:44:35 +00:00
},
Back: function( p ) {
return p * p * ( 3 * p - 2 );
2008-05-23 09:26:18 +00:00
},
Bounce: function ( p ) {
var pow2,
bounce = 4;
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
2008-05-23 09:26:18 +00:00
}
});
$.each( baseEasings, function( name, easeIn ) {
$.easing[ "easeIn" + name ] = easeIn;
$.easing[ "easeOut" + name ] = function( p ) {
return 1 - easeIn( 1 - p );
};
$.easing[ "easeInOut" + name ] = function( p ) {
2012-04-02 19:55:50 +00:00
return p < 0.5 ?
easeIn( p * 2 ) / 2 :
2012-04-20 17:58:33 +00:00
1 - easeIn( p * -2 + 2 ) / 2;
};
});
2008-05-23 09:26:18 +00:00
2012-04-02 23:12:21 +00:00
})();
})(jQuery));