2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Blind @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2014-01-17 13:10:43 +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/blind-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 ) {
|
2011-06-21 06:15:42 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
var rvertical = /up|down|vertical/,
|
|
|
|
rpositivemotion = /up|left|vertical|horizontal/;
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-06-21 06:11:46 +00:00
|
|
|
$.effects.effect.blind = function( o, done ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
// Create element
|
|
|
|
var el = $( this ),
|
|
|
|
props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
|
|
|
|
mode = $.effects.setMode( el, o.mode || "hide" ),
|
|
|
|
direction = o.direction || "up",
|
|
|
|
vertical = rvertical.test( direction ),
|
|
|
|
ref = vertical ? "height" : "width",
|
|
|
|
ref2 = vertical ? "top" : "left",
|
|
|
|
motion = rpositivemotion.test( direction ),
|
|
|
|
animation = {},
|
|
|
|
show = mode === "show",
|
2012-01-05 17:43:51 +00:00
|
|
|
wrapper, distance, margin;
|
2011-03-07 00:48:14 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// if already wrapped, the wrapper's properties are my property. #6245
|
|
|
|
if ( el.parent().is( ".ui-effects-wrapper" ) ) {
|
|
|
|
$.effects.save( el.parent(), props );
|
|
|
|
} else {
|
|
|
|
$.effects.save( el, props );
|
|
|
|
}
|
2011-06-21 06:15:42 +00:00
|
|
|
el.show();
|
|
|
|
wrapper = $.effects.createWrapper( el ).css({
|
2011-06-21 05:23:52 +00:00
|
|
|
overflow: "hidden"
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
distance = wrapper[ ref ]();
|
2012-07-20 23:35:32 +00:00
|
|
|
margin = parseFloat( wrapper.css( ref2 ) ) || 0;
|
2011-03-07 00:48:14 +00:00
|
|
|
|
2011-06-21 06:15:42 +00:00
|
|
|
animation[ ref ] = show ? distance : 0;
|
2011-06-21 05:23:52 +00:00
|
|
|
if ( !motion ) {
|
|
|
|
el
|
|
|
|
.css( vertical ? "bottom" : "right", 0 )
|
2012-01-05 17:43:51 +00:00
|
|
|
.css( vertical ? "top" : "left", "auto" )
|
2011-06-21 05:23:52 +00:00
|
|
|
.css({ position: "absolute" });
|
2012-01-05 17:43:51 +00:00
|
|
|
|
2012-07-20 23:35:32 +00:00
|
|
|
animation[ ref2 ] = show ? margin : distance + margin;
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
2011-05-03 13:16:30 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// start at 0 if we are showing
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( show ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
wrapper.css( ref, 0 );
|
|
|
|
if ( ! motion ) {
|
2012-01-05 17:43:51 +00:00
|
|
|
wrapper.css( ref2, margin + distance );
|
2011-05-03 13:16:30 +00:00
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animate
|
|
|
|
wrapper.animate( animation, {
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.easing,
|
|
|
|
queue: false,
|
|
|
|
complete: function() {
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( mode === "hide" ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
el.hide();
|
2011-05-03 13:16:30 +00:00
|
|
|
}
|
2011-06-21 06:15:42 +00:00
|
|
|
$.effects.restore( el, props );
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.removeWrapper( el );
|
2011-06-21 06:11:46 +00:00
|
|
|
done();
|
2011-06-21 05:23:52 +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
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|