2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Fold @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2013-01-10 13:52:20 +00:00
|
|
|
* Copyright 2013 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-11-20 04:10:34 +00:00
|
|
|
*
|
2012-09-26 23:06:20 +00:00
|
|
|
* http://api.jqueryui.com/fold-effect/
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
|
|
|
* Depends:
|
2012-06-15 16:47:12 +00:00
|
|
|
* jquery.ui.effect.js
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-06-21 06:11:46 +00:00
|
|
|
$.effects.effect.fold = function( o, done ) {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Create element
|
|
|
|
var el = $( this ),
|
2011-06-21 06:15:42 +00:00
|
|
|
props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
|
|
|
|
mode = $.effects.setMode( el, o.mode || "hide" ),
|
|
|
|
show = mode === "show",
|
|
|
|
hide = mode === "hide",
|
2011-06-21 05:23:52 +00:00
|
|
|
size = o.size || 15,
|
2011-06-21 06:15:42 +00:00
|
|
|
percent = /([0-9]+)%/.exec( size ),
|
2011-06-21 05:23:52 +00:00
|
|
|
horizFirst = !!o.horizFirst,
|
2012-04-02 23:12:21 +00:00
|
|
|
widthFirst = show !== horizFirst,
|
2011-06-21 06:15:42 +00:00
|
|
|
ref = widthFirst ? [ "width", "height" ] : [ "height", "width" ],
|
2011-06-21 05:23:52 +00:00
|
|
|
duration = o.duration / 2,
|
2011-06-21 06:15:42 +00:00
|
|
|
wrapper, distance,
|
2012-04-02 23:12:21 +00:00
|
|
|
animation1 = {},
|
|
|
|
animation2 = {};
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
2011-03-06 23:45:43 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Create Wrapper
|
|
|
|
wrapper = $.effects.createWrapper( el ).css({
|
|
|
|
overflow: "hidden"
|
|
|
|
});
|
|
|
|
distance = widthFirst ?
|
|
|
|
[ wrapper.width(), wrapper.height() ] :
|
|
|
|
[ wrapper.height(), wrapper.width() ];
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
if ( percent ) {
|
2011-06-21 06:15:42 +00:00
|
|
|
size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( show ) {
|
|
|
|
wrapper.css( horizFirst ? {
|
2011-06-21 05:23:52 +00:00
|
|
|
height: 0,
|
|
|
|
width: size
|
|
|
|
} : {
|
|
|
|
height: size,
|
|
|
|
width: 0
|
|
|
|
});
|
2011-06-21 06:15:42 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animation
|
2011-06-21 06:15:42 +00:00
|
|
|
animation1[ ref[ 0 ] ] = show ? distance[ 0 ] : size;
|
|
|
|
animation2[ ref[ 1 ] ] = show ? distance[ 1 ] : 0;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animate
|
|
|
|
wrapper
|
|
|
|
.animate( animation1, duration, o.easing )
|
|
|
|
.animate( animation2, duration, o.easing, function() {
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( hide ) {
|
|
|
|
el.hide();
|
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.effects.removeWrapper( el );
|
2011-06-21 06:11:46 +00:00
|
|
|
done();
|
2011-06-21 05:23:52 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|