2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Drop @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2014-01-29 03:25:02 +00:00
|
|
|
* Copyright 2014 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/drop-effect/
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2013-07-12 16:40:48 +00:00
|
|
|
(function( factory ) {
|
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define([
|
|
|
|
"jquery",
|
2013-12-02 18:36:12 +00:00
|
|
|
"./effect"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
|
|
|
}(function( $ ) {
|
|
|
|
|
|
|
|
return $.effects.effect.drop = function( o, done ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2012-04-19 01:57:51 +00:00
|
|
|
var el = $( this ),
|
2011-06-21 05:23:52 +00:00
|
|
|
props = [ "position", "top", "bottom", "left", "right", "opacity", "height", "width" ],
|
|
|
|
mode = $.effects.setMode( el, o.mode || "hide" ),
|
2011-06-21 06:15:42 +00:00
|
|
|
show = mode === "show",
|
2011-06-21 05:23:52 +00:00
|
|
|
direction = o.direction || "left",
|
2011-06-21 06:15:42 +00:00
|
|
|
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
|
|
|
motion = ( direction === "up" || direction === "left" ) ? "pos" : "neg",
|
2011-06-21 05:23:52 +00:00
|
|
|
animation = {
|
2011-06-21 06:15:42 +00:00
|
|
|
opacity: show ? 1 : 0
|
2011-06-21 05:23:52 +00:00
|
|
|
},
|
|
|
|
distance;
|
|
|
|
|
|
|
|
// Adjust
|
2012-04-19 01:57:51 +00:00
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
|
|
|
$.effects.createWrapper( el );
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2014-08-13 16:29:28 +00:00
|
|
|
distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
|
2011-06-21 05:23:52 +00:00
|
|
|
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( show ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
el
|
|
|
|
.css( "opacity", 0 )
|
2012-04-02 19:55:50 +00:00
|
|
|
.css( ref, motion === "pos" ? -distance : distance );
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Animation
|
2012-04-19 01:57:51 +00:00
|
|
|
animation[ ref ] = ( show ?
|
|
|
|
( motion === "pos" ? "+=" : "-=" ) :
|
2012-04-02 19:55:50 +00:00
|
|
|
( motion === "pos" ? "-=" : "+=" ) ) +
|
|
|
|
distance;
|
2011-06-21 05:23:52 +00:00
|
|
|
|
|
|
|
// Animate
|
2012-04-19 01:57:51 +00:00
|
|
|
el.animate( animation, {
|
|
|
|
queue: false,
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.easing,
|
2011-06-21 05:23:52 +00:00
|
|
|
complete: function() {
|
2012-04-02 19:55:50 +00:00
|
|
|
if ( mode === "hide" ) {
|
|
|
|
el.hide();
|
|
|
|
}
|
2012-04-19 01:57:51 +00:00
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.effects.removeWrapper( el );
|
2011-06-21 06:11:46 +00:00
|
|
|
done();
|
2011-03-06 11:36:06 +00:00
|
|
|
}
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
|
|
|
};
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
}));
|