kollapsminoriteten/wp-includes/js/jquery/ui/effect-puff.js

46 lines
995 B
JavaScript
Raw Normal View History

2020-12-10 14:06:04 +01:00
/*!
2025-02-28 08:42:11 +01:00
* jQuery UI Effects Puff 1.13.3
* https://jqueryui.com
2020-12-10 14:06:04 +01:00
*
2025-02-28 08:42:11 +01:00
* Copyright OpenJS Foundation and other contributors
2020-12-10 14:06:04 +01:00
* Released under the MIT license.
2025-02-28 08:42:11 +01:00
* https://jquery.org/license
2020-12-10 14:06:04 +01:00
*/
//>>label: Puff Effect
//>>group: Effects
//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
2025-02-28 08:42:11 +01:00
//>>docs: https://api.jqueryui.com/puff-effect/
//>>demos: https://jqueryui.com/effect/
2020-12-10 14:06:04 +01:00
( function( factory ) {
2022-04-02 10:26:41 +02:00
"use strict";
2020-12-10 14:06:04 +01:00
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [
"jquery",
2025-02-28 08:42:11 +01:00
"../version",
"../effect",
2020-12-10 14:06:04 +01:00
"./effect-scale"
], factory );
} else {
// Browser globals
factory( jQuery );
}
2022-04-02 10:26:41 +02:00
} )( function( $ ) {
"use strict";
2020-12-10 14:06:04 +01:00
return $.effects.define( "puff", "hide", function( options, done ) {
var newOptions = $.extend( true, {}, options, {
fade: true,
percent: parseInt( options.percent, 10 ) || 150
} );
$.effects.effect.scale.call( this, newOptions, done );
} );
2022-04-02 10:26:41 +02:00
} );