jquery-ui/ui/jquery.effects.slide.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

/*!
* jQuery UI Effects Slide @VERSION
*
2012-03-08 15:53:08 +00:00
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Slide
*
* Depends:
* jquery.effects.core.js
*/
(function( $, undefined ) {
2008-06-04 02:34:33 +00:00
$.effects.effect.slide = function( o, done ) {
2008-06-04 02:34:33 +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",
direction = o.direction || "left",
2012-04-02 23:12:21 +00:00
ref = (direction === "up" || direction === "down") ? "top" : "left",
positiveMotion = (direction === "up" || direction === "left"),
distance,
2012-04-28 21:36:38 +00:00
animation = {};
// Adjust
$.effects.save( el, props );
el.show();
2012-04-19 01:57:51 +00:00
distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]({
margin: true
});
2012-04-19 01:57:51 +00:00
$.effects.createWrapper( el ).css({
overflow: "hidden"
});
2012-04-19 01:57:51 +00:00
2011-06-21 06:15:42 +00:00
if ( show ) {
el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
}
// Animation
2012-04-19 01:57:51 +00:00
animation[ ref ] = ( show ?
( positiveMotion ? "+=" : "-=") :
2012-04-02 19:55:50 +00:00
( positiveMotion ? "-=" : "+=")) +
distance;
// Animate
2012-04-19 01:57:51 +00:00
el.animate( animation, {
queue: false,
duration: o.duration,
easing: o.easing,
complete: function() {
2011-06-21 06:15:42 +00:00
if ( mode === "hide" ) {
2012-04-19 01:57:51 +00:00
el.hide();
2011-03-07 00:34:18 +00:00
}
$.effects.restore( el, props );
$.effects.removeWrapper( el );
done();
}
});
};
})(jQuery);