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
|
|
|
*
|
2012-03-19 13:25:07 +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/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 ) {
|
2008-05-23 09:26:18 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
$.effects.blind = function(o) {
|
2008-05-23 09:26:18 +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 || 'hide'); // Set Mode
|
|
|
|
var direction = o.options.direction || 'vertical'; // 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
|
|
|
|
var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
|
|
|
|
var ref = (direction == 'vertical') ? 'height' : 'width';
|
|
|
|
var distance = (direction == 'vertical') ? wrapper.height() : wrapper.width();
|
|
|
|
if(mode == 'show') wrapper.css(ref, 0); // Shift
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animation
|
|
|
|
var animation = {};
|
|
|
|
animation[ref] = mode == 'show' ? distance : 0;
|
2008-11-20 04:10:34 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animate
|
|
|
|
wrapper.animate(animation, o.duration, o.options.easing, function() {
|
|
|
|
if(mode == 'hide') el.hide(); // Hide
|
|
|
|
$.effects.restore(el, props); $.effects.removeWrapper(el); // Restore
|
|
|
|
if(o.callback) o.callback.apply(el[0], 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);
|