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
|
|
|
*
|
2011-01-17 14:36:00 +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/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
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
$.effects.slide = function(o) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
return this.queue(function() {
|
|
|
|
|
|
|
|
// Create element
|
2010-12-13 18:02:31 +00:00
|
|
|
var el = $(this), props = ['position','top','bottom','left','right'];
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Set options
|
|
|
|
var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode
|
|
|
|
var direction = o.options.direction || 'left'; // Default Direction
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Adjust
|
|
|
|
$.effects.save(el, props); el.show(); // Save & Show
|
|
|
|
$.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
|
|
|
|
var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left';
|
|
|
|
var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg';
|
|
|
|
var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) : el.outerWidth({margin:true}));
|
2010-11-09 13:38:06 +00:00
|
|
|
if (mode == 'show') el.css(ref, motion == 'pos' ? (isNaN(distance) ? "-" + distance : -distance) : distance); // Shift
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animation
|
|
|
|
var animation = {};
|
|
|
|
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
|
|
|
|
el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
|
|
|
|
if(mode == 'hide') el.hide(); // Hide
|
|
|
|
$.effects.restore(el, props); $.effects.removeWrapper(el); // Restore
|
|
|
|
if(o.callback) o.callback.apply(this, arguments); // Callback
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|