2008-06-06 20:08:52 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Drop @VERSION
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2011-01-17 14:13:18 +00:00
|
|
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
2010-07-09 13:01:04 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2008-06-06 20:08:52 +00:00
|
|
|
* http://docs.jquery.com/UI/Effects/Drop
|
|
|
|
*
|
|
|
|
* Depends:
|
2009-09-17 10:39:12 +00:00
|
|
|
* jquery.effects.core.js
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2011-03-15 13:00:45 +00:00
|
|
|
$.effects.effect.drop = function( o ) {
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2011-03-06 11:36:06 +00:00
|
|
|
return this.queue( function() {
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2011-03-03 02:00:57 +00:00
|
|
|
var el = $( this ),
|
2011-03-06 11:36:06 +00:00
|
|
|
props = [ 'position', 'top', 'bottom', 'left', 'right', 'opacity' ],
|
|
|
|
mode = $.effects.setMode( el, o.mode || 'hide' ),
|
|
|
|
direction = o.direction || 'left',
|
2011-03-07 05:34:24 +00:00
|
|
|
ref = ( direction == 'up' || direction == 'down' ) ? 'top' : 'left',
|
|
|
|
motion = ( direction == 'up' || direction == 'left' ) ? 'pos' : 'neg',
|
2011-03-06 11:36:06 +00:00
|
|
|
animation = {
|
|
|
|
opacity: mode == 'show' ? 1 : 0
|
|
|
|
},
|
|
|
|
distance;
|
2011-03-07 05:34:24 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Adjust
|
2011-03-07 05:34:24 +00:00
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
|
|
|
$.effects.createWrapper( el );
|
|
|
|
|
2011-03-06 11:36:06 +00:00
|
|
|
distance = o.distance || el[ ref == 'top' ? 'outerHeight': 'outerWidth' ]({ margin: true }) / 2;
|
|
|
|
|
|
|
|
if ( mode == 'show' ) {
|
|
|
|
el
|
|
|
|
.css( 'opacity', 0 )
|
|
|
|
.css( ref, motion == 'pos' ? -distance : distance );
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animation
|
2011-03-06 11:36:06 +00:00
|
|
|
animation[ ref ] = ((mode == 'show') ? (motion == 'pos' ? '+=' : '-=') : (motion == 'pos' ? '-=' : '+=')) + distance;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animate
|
2011-03-06 11:36:06 +00:00
|
|
|
el.animate( animation, {
|
|
|
|
queue: false,
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.easing,
|
|
|
|
complete: function() {
|
|
|
|
mode == 'hide' && el.hide();
|
2011-03-07 00:48:14 +00:00
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.effects.removeWrapper( el );
|
2011-03-06 11:36:06 +00:00
|
|
|
$.isFunction( o.complete ) && o.complete.apply(this, arguments);
|
|
|
|
el.dequeue();
|
|
|
|
}
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
2008-06-04 02:34:33 +00:00
|
|
|
|
|
|
|
})(jQuery);
|