aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effect-fade.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/effect-fade.js')
-rw-r--r--ui/effect-fade.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/ui/effect-fade.js b/ui/effect-fade.js
new file mode 100644
index 000000000..540a274a4
--- /dev/null
+++ b/ui/effect-fade.js
@@ -0,0 +1,40 @@
+/*!
+ * jQuery UI Effects Fade @VERSION
+ * http://jqueryui.com
+ *
+ * Copyright 2013 jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ *
+ * http://api.jqueryui.com/fade-effect/
+ */
+(function( factory ) {
+ if ( typeof define === "function" && define.amd ) {
+
+ // AMD. Register as an anonymous module.
+ define([
+ "jquery",
+ "./effect"
+ ], factory );
+ } else {
+
+ // Browser globals
+ factory( jQuery );
+ }
+}(function( $ ) {
+
+return $.effects.effect.fade = function( o, done ) {
+ var el = $( this ),
+ mode = $.effects.setMode( el, o.mode || "toggle" );
+
+ el.animate({
+ opacity: mode
+ }, {
+ queue: false,
+ duration: o.duration,
+ easing: o.easing,
+ complete: done
+ });
+};
+
+}));