2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2009-11-13 04:35:47 +00:00
|
|
|
* jQuery UI Effects Fade @VERSION
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jqueryui.com
|
2009-11-13 04:35:47 +00:00
|
|
|
*
|
2022-07-19 07:36:55 +00:00
|
|
|
* Copyright OpenJS Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jquery.org/license
|
2009-11-13 04:35:47 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Fade Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Fades the element.
|
2024-04-26 14:25:34 +00:00
|
|
|
//>>docs: https://api.jqueryui.com/fade-effect/
|
|
|
|
//>>demos: https://jqueryui.com/effect/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
2015-03-18 14:39:12 +00:00
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2009-11-13 04:35:47 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
2015-03-18 14:39:12 +00:00
|
|
|
define( [
|
2013-07-12 16:40:48 +00:00
|
|
|
"jquery",
|
2015-07-15 02:01:41 +00:00
|
|
|
"../version",
|
|
|
|
"../effect"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( $ ) {
|
|
|
|
"use strict";
|
2013-07-12 16:40:48 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
return $.effects.define( "fade", "toggle", function( options, done ) {
|
|
|
|
var show = options.mode === "show";
|
2009-11-13 04:35:47 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$( this )
|
|
|
|
.css( "opacity", show ? 0 : 1 )
|
2015-03-18 14:39:12 +00:00
|
|
|
.animate( {
|
2012-12-26 13:35:42 +00:00
|
|
|
opacity: show ? 1 : 0
|
|
|
|
}, {
|
|
|
|
queue: false,
|
|
|
|
duration: options.duration,
|
|
|
|
easing: options.easing,
|
|
|
|
complete: done
|
2015-03-18 14:39:12 +00:00
|
|
|
} );
|
|
|
|
} );
|
2009-11-13 04:35:47 +00:00
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|