mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
|
/*!
|
||
|
* jQuery UI Effects Puff @VERSION
|
||
|
* http://jqueryui.com
|
||
|
*
|
||
|
* Copyright 2013 jQuery Foundation and other contributors
|
||
|
* Released under the MIT license.
|
||
|
* http://jquery.org/license
|
||
|
*
|
||
|
* http://api.jqueryui.com/puff-effect/
|
||
|
*
|
||
|
* Depends:
|
||
|
* jquery.ui.effect.js
|
||
|
* jquery.ui.effect-scale.js
|
||
|
*/
|
||
|
(function( $, undefined ) {
|
||
|
|
||
|
$.effects.effect.puff = function( o, done ) {
|
||
|
var elem = $( this ),
|
||
|
mode = $.effects.setMode( elem, o.mode || "hide" ),
|
||
|
hide = mode === "hide",
|
||
|
percent = parseInt( o.percent, 10 ) || 150,
|
||
|
factor = percent / 100,
|
||
|
original = {
|
||
|
height: elem.height(),
|
||
|
width: elem.width(),
|
||
|
outerHeight: elem.outerHeight(),
|
||
|
outerWidth: elem.outerWidth()
|
||
|
};
|
||
|
|
||
|
$.extend( o, {
|
||
|
effect: "scale",
|
||
|
queue: false,
|
||
|
fade: true,
|
||
|
mode: mode,
|
||
|
complete: done,
|
||
|
percent: hide ? percent : 100,
|
||
|
from: hide ?
|
||
|
original :
|
||
|
{
|
||
|
height: original.height * factor,
|
||
|
width: original.width * factor,
|
||
|
outerHeight: original.outerHeight * factor,
|
||
|
outerWidth: original.outerWidth * factor
|
||
|
}
|
||
|
});
|
||
|
|
||
|
elem.effect( o );
|
||
|
};
|
||
|
|
||
|
})(jQuery);
|