2008-06-06 20:08:52 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Slide @VERSION
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2012-03-08 15:53:08 +00:00
|
|
|
* Copyright 2012, 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/Slide
|
|
|
|
*
|
|
|
|
* 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-06-21 06:11:46 +00:00
|
|
|
$.effects.effect.slide = function( o, done ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Create element
|
|
|
|
var el = $( this ),
|
|
|
|
props = [ "position", "top", "bottom", "left", "right", "width", "height" ],
|
|
|
|
mode = $.effects.setMode( el, o.mode || "show" ),
|
2011-06-21 06:15:42 +00:00
|
|
|
show = mode === "show",
|
2011-06-21 05:23:52 +00:00
|
|
|
direction = o.direction || "left",
|
|
|
|
ref = (direction == "up" || direction == "down") ? "top" : "left",
|
2011-06-21 06:15:42 +00:00
|
|
|
positiveMotion = (direction == "up" || direction == "left"),
|
2011-06-21 05:23:52 +00:00
|
|
|
distance,
|
|
|
|
animation = {},
|
|
|
|
size;
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Adjust
|
|
|
|
$.effects.save( el, props );
|
|
|
|
el.show();
|
2011-06-21 06:15:42 +00:00
|
|
|
distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]({
|
2011-06-21 05:23:52 +00:00
|
|
|
margin: true
|
|
|
|
});
|
|
|
|
|
|
|
|
$.effects.createWrapper( el ).css({
|
|
|
|
overflow: "hidden"
|
|
|
|
});
|
|
|
|
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( show ) {
|
|
|
|
el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animation
|
2011-06-21 06:15:42 +00:00
|
|
|
animation[ ref ] = ( show ?
|
|
|
|
( positiveMotion ? "+=" : "-=") :
|
|
|
|
( positiveMotion ? "-=" : "+="))
|
2011-06-21 05:23:52 +00:00
|
|
|
+ distance;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-06-21 05:23:52 +00:00
|
|
|
// Animate
|
|
|
|
el.animate( animation, {
|
|
|
|
queue: false,
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.easing,
|
|
|
|
complete: function() {
|
2011-06-21 06:15:42 +00:00
|
|
|
if ( mode === "hide" ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
el.hide();
|
2011-03-07 00:34:18 +00:00
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.restore( el, props );
|
|
|
|
$.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);
|