jquery-ui/ui/jquery.effects.blind.js

50 lines
1.3 KiB
JavaScript
Raw Normal View History

/*
* jQuery UI Effects Blind @VERSION
*
2011-01-17 14:13:18 +00:00
* Copyright 2011, 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/Blind
*
* Depends:
* jquery.effects.core.js
*/
(function( $, undefined ) {
2008-05-23 09:26:18 +00:00
$.effects.blind = function(o) {
2008-05-23 09:26:18 +00:00
return this.queue(function() {
// Create element
var el = $(this),
props = ['position','top','bottom','left','right'],
mode = $.effects.setMode( el, o.mode || 'hide' ),
direction = o.direction || 'vertical',
ref = (direction == 'vertical') ? 'height' : 'width',
wrapper, distance; // Default direction
// Adjust
$.effects.save(el, props); el.show(); // Save & Show
wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
distance = wrapper[ direction == 'vertical' ? "height" : "width" ]();
if(mode == 'show') wrapper.css(ref, 0); // Shift
// Animation
var animation = {};
animation[ref] = mode == 'show' ? distance : 0;
// Animate
wrapper.animate(animation, o.duration, o.easing, function() {
if(mode == 'hide') el.hide(); // Hide
$.effects.restore(el, props); $.effects.removeWrapper(el); // Restore
if(o.complete) o.complete.apply(el[0], arguments); // Callback
el.dequeue();
});
});
};
})(jQuery);