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
|
|
|
*
|
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: Fold Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Folds an element first horizontally and then vertically.
|
|
|
|
//>>docs: http://api.jqueryui.com/fold-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-05-23 09:26:18 +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"
|
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( "fold", "hide", function( options, done ) {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Create element
|
2012-12-26 13:35:42 +00:00
|
|
|
var element = $( this ),
|
|
|
|
mode = options.mode,
|
2011-06-21 06:15:42 +00:00
|
|
|
show = mode === "show",
|
|
|
|
hide = mode === "hide",
|
2012-12-26 13:35:42 +00:00
|
|
|
size = options.size || 15,
|
2011-06-21 06:15:42 +00:00
|
|
|
percent = /([0-9]+)%/.exec( size ),
|
2012-12-26 13:35:42 +00:00
|
|
|
horizFirst = !!options.horizFirst,
|
|
|
|
ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ],
|
|
|
|
duration = options.duration / 2,
|
|
|
|
|
|
|
|
placeholder = $.effects.createPlaceholder( element ),
|
|
|
|
|
|
|
|
start = element.cssClip(),
|
|
|
|
animation1 = { clip: $.extend( {}, start ) },
|
|
|
|
animation2 = { clip: $.extend( {}, start ) },
|
|
|
|
|
|
|
|
distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ],
|
|
|
|
|
|
|
|
queuelen = element.queue().length;
|
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
|
|
|
}
|
2012-12-26 13:35:42 +00:00
|
|
|
animation1.clip[ ref[ 0 ] ] = size;
|
|
|
|
animation2.clip[ ref[ 0 ] ] = size;
|
|
|
|
animation2.clip[ ref[ 1 ] ] = 0;
|
|
|
|
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( show ) {
|
2012-12-26 13:35:42 +00:00
|
|
|
element.cssClip( animation2.clip );
|
|
|
|
if ( placeholder ) {
|
|
|
|
placeholder.css( $.effects.clipToBox( animation2 ) );
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
animation2.clip = start;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animate
|
2012-12-26 13:35:42 +00:00
|
|
|
element
|
2015-03-18 14:39:12 +00:00
|
|
|
.queue( function( next ) {
|
2012-12-26 13:35:42 +00:00
|
|
|
if ( placeholder ) {
|
|
|
|
placeholder
|
|
|
|
.animate( $.effects.clipToBox( animation1 ), duration, options.easing )
|
|
|
|
.animate( $.effects.clipToBox( animation2 ), duration, options.easing );
|
2011-06-21 06:15:42 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
next();
|
2015-03-18 14:39:12 +00:00
|
|
|
} )
|
2012-12-26 13:35:42 +00:00
|
|
|
.animate( animation1, duration, options.easing )
|
|
|
|
.animate( animation2, duration, options.easing )
|
|
|
|
.queue( done );
|
|
|
|
|
|
|
|
$.effects.unshift( element, queuelen, 4 );
|
2015-03-18 14:39:12 +00:00
|
|
|
} );
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
} ) );
|