2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Scale @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Scale Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Grows or shrinks an element and its content. Restores an element to its original size.
|
|
|
|
//>>docs: http://api.jqueryui.com/scale-effect/
|
|
|
|
//>>demos: http://jqueryui.com/effect/
|
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
( function( factory ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
2015-03-18 14:39:12 +00:00
|
|
|
define( [
|
2013-07-12 16:40:48 +00:00
|
|
|
"jquery",
|
2013-12-02 18:36:12 +00:00
|
|
|
"./effect",
|
|
|
|
"./effect-size"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2015-03-18 14:39:12 +00:00
|
|
|
}( function( $ ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
return $.effects.define( "scale", function( options, done ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
|
|
|
|
// Create element
|
|
|
|
var el = $( this ),
|
2012-12-26 13:35:42 +00:00
|
|
|
mode = options.mode,
|
|
|
|
percent = parseInt( options.percent, 10 ) ||
|
|
|
|
( parseInt( options.percent, 10 ) === 0 ? 0 : ( mode !== "effect" ? 0 : 100 ) ),
|
2011-03-07 00:34:18 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
newOptions = $.extend( true, {
|
|
|
|
from: $.effects.scaledDimensions( el ),
|
|
|
|
to: $.effects.scaledDimensions( el, percent, options.direction || "both" ),
|
|
|
|
origin: options.origin || [ "middle", "center" ]
|
|
|
|
}, options );
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2012-04-02 19:55:50 +00:00
|
|
|
// Fade option to support puff
|
|
|
|
if ( options.fade ) {
|
2012-12-26 13:35:42 +00:00
|
|
|
newOptions.from.opacity = 1;
|
|
|
|
newOptions.to.opacity = 0;
|
2012-04-02 19:55:50 +00:00
|
|
|
}
|
2011-03-07 00:34:18 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$.effects.effect.size.call( this, newOptions, done );
|
2015-03-18 14:39:12 +00:00
|
|
|
} );
|
2011-03-07 00:34:18 +00:00
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
} ) );
|