diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-11-13 04:35:47 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-11-13 04:35:47 +0000 |
commit | bddf0fdb7738f2a7a36a0cce7105de0a781da293 (patch) | |
tree | 10c56ae4dfb938e0b90e5f8e7a6fe465cb047473 /ui/jquery.effects.fade.js | |
parent | c252e44a1f77e9cab058297b6abc6458a62652ca (diff) | |
download | jquery-ui-bddf0fdb7738f2a7a36a0cce7105de0a781da293.tar.gz jquery-ui-bddf0fdb7738f2a7a36a0cce7105de0a781da293.zip |
Effects: Added fade effect. Needs documentation.
Fixes #4416 - Add fade effect.
Diffstat (limited to 'ui/jquery.effects.fade.js')
-rw-r--r-- | ui/jquery.effects.fade.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ui/jquery.effects.fade.js b/ui/jquery.effects.fade.js new file mode 100644 index 000000000..abc16d6ae --- /dev/null +++ b/ui/jquery.effects.fade.js @@ -0,0 +1,32 @@ +/* + * jQuery UI Effects Fade @VERSION + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Fade + * + * Depends: + * jquery.effects.core.js + */ +(function($) { + +$.effects.fade = function(o) { + return this.queue(function() { + var elem = $(this), + mode = $.effects.setMode(elem, o.options.mode || 'hide'); + + elem.animate({ opacity: mode }, { + queue: false, + duration: o.duration, + easing: o.options.easing, + complete: function() { + (o.callback && o.callback.apply(this, arguments)); + elem.dequeue(); + } + }); + }); +}; + +})(jQuery); |