jquery-ui/ui/source/effects.fade.js

35 lines
1.1 KiB
JavaScript
Raw Normal View History

2008-05-23 09:26:18 +00:00
;(function($) {
$.effects.fade = function(o) {
return this.queue(function() {
// Create element
var el = $(this), props = ['opacity'];
// Set options
var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode
if (mode == 'toggle') mode = el.is(':hidden') ? 'show' : 'hide'; // Set for toggle
var opacity = o.options.opacity || 0; // Default fade opacity
var original_opacity = el.css('opacity');
// Adjust
$.effects.save(el, props); el.show(); // Save & Show
if(mode == 'show') el.css({opacity: 0}); // Shift
// Animation
var animation = {opacity: mode == 'show' ? original_opacity : opacity};
// Animate
el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
if(mode == 'hide') el.hide(); // Hide
if(mode == 'hide') $.effects.restore(el, props); // Restore
if(o.callback) o.callback.apply(this, arguments); // Callback
el.dequeue();
}});
});
};
})(jQuery);