2008-06-06 20:08:52 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Blind @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/Blind
|
|
|
|
*
|
|
|
|
* 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 ) {
|
2011-05-03 13:16:30 +00:00
|
|
|
|
|
|
|
var rvertical = /up|down|vertical/;
|
|
|
|
var rpositivemotion = /up|left|vertical|horizontal/;
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2011-03-15 13:00:45 +00:00
|
|
|
$.effects.effect.blind = function( o ) {
|
2011-03-07 00:48:14 +00:00
|
|
|
|
|
|
|
return this.queue( function() {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Create element
|
2011-03-07 00:48:14 +00:00
|
|
|
var el = $( this ),
|
2011-05-03 13:16:30 +00:00
|
|
|
props = [ "position", "top", "bottom", "left", "right" ],
|
|
|
|
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 ),
|
2011-03-04 23:10:02 +00:00
|
|
|
animation = {},
|
|
|
|
wrapper, distance;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-07 00:48:14 +00:00
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
|
|
|
wrapper = $.effects.createWrapper( el ).css({
|
2011-05-03 13:16:30 +00:00
|
|
|
overflow: "hidden"
|
2011-03-07 00:48:14 +00:00
|
|
|
});
|
|
|
|
|
2011-05-03 13:16:30 +00:00
|
|
|
distance = wrapper[ ref ]();
|
|
|
|
|
|
|
|
animation[ ref ] = ( mode === "show" ? distance : 0 );
|
|
|
|
if ( !motion ) {
|
|
|
|
el
|
|
|
|
.css( vertical ? "bottom" : "right", 0 )
|
|
|
|
.css( vertical ? "top" : "left", "" )
|
|
|
|
.css({ position: "absolute" });
|
|
|
|
animation[ ref2 ] = ( mode === "show" ) ? 0 : distance;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-07 00:48:14 +00:00
|
|
|
// start at 0 if we are showing
|
2011-05-03 13:16:30 +00:00
|
|
|
if ( mode == "show" ) {
|
|
|
|
wrapper.css( ref, 0 );
|
|
|
|
if ( ! motion ) {
|
|
|
|
wrapper.css( ref2, distance );
|
|
|
|
}
|
|
|
|
}
|
2008-11-20 04:10:34 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animate
|
2011-05-03 13:16:30 +00:00
|
|
|
wrapper.animate( animation, {
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.easing,
|
|
|
|
queue: false,
|
|
|
|
complete: function() {
|
|
|
|
if ( mode == "hide" ) {
|
|
|
|
el.hide();
|
|
|
|
}
|
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.effects.removeWrapper( el );
|
|
|
|
if ( $.isFunction( o.complete ) ) {
|
|
|
|
o.complete.apply( el[ 0 ], arguments );
|
|
|
|
}
|
|
|
|
el.dequeue();
|
|
|
|
}
|
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-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|