/*! * jQuery UI Effects Explode 1.13.2 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: Explode Effect //>>group: Effects /* eslint-disable max-len */ //>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness. /* eslint-enable max-len */ //>>docs: http://api.jqueryui.com/explode-effect/ //>>demos: http://jqueryui.com/effect/ ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./effect" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; return $.effects.define( "explode", "hide", function( options, done ) { var i, j, left, top, mx, my, rows = options.pieces ? Math.round( Math.sqrt( options.pieces ) ) : 3, cells = rows, element = $( this ), mode = options.mode, show = mode === "show", // Show and then visibility:hidden the element before calculating offset offset = element.show().css( "visibility", "hidden" ).offset(), // Width and height of a piece width = Math.ceil( element.outerWidth() / cells ), height = Math.ceil( element.outerHeight() / rows ), pieces = []; // Children animate complete: function childComplete() { pieces.push( this ); if ( pieces.length === rows * cells ) { animComplete(); } } // Clone the element for each row and cell. for ( i = 0; i < rows; i++ ) { // ===> top = offset.top + i * height; my = i - ( rows - 1 ) / 2; for ( j = 0; j < cells; j++ ) { // ||| left = offset.left + j * width; mx = j - ( cells - 1 ) / 2; // Create a clone of the now hidden main element that will be absolute positioned // within a wrapper div off the -left and -top equal to size of our pieces element .clone() .appendTo( "body" ) .wrap( "<div></div>" ) .css( { position: "absolute", visibility: "visible", left: -j * width, top: -i * height } ) // Select the wrapper - make it overflow: hidden and absolute positioned based on // where the original was located +left and +top equal to the size of pieces .parent() .addClass( "ui-effects-explode" ) .css( { position: "absolute", overflow: "hidden", width: width, height: height, left: left + ( show ? mx * width : 0 ), top: top + ( show ? my * height : 0 ), opacity: show ? 0 : 1 } ) .animate( { left: left + ( show ? 0 : mx * width ), top: top + ( show ? 0 : my * height ), opacity: show ? 1 : 0 }, options.duration || 500, options.easing, childComplete ); } } function animComplete() { element.css( { visibility: "visible" } ); $( pieces ).remove(); done(); } } ); } );
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
accordion.js | File | 15.7 KB | 0644 |
|
accordion.min.js | File | 8.61 KB | 0644 |
|
autocomplete.js | File | 17.03 KB | 0644 |
|
autocomplete.min.js | File | 8.27 KB | 0644 |
|
button.js | File | 11.41 KB | 0644 |
|
button.min.js | File | 5.99 KB | 0644 |
|
checkboxradio.js | File | 7.36 KB | 0644 |
|
checkboxradio.min.js | File | 4.21 KB | 0644 |
|
controlgroup.js | File | 8.41 KB | 0644 |
|
controlgroup.min.js | File | 4.29 KB | 0644 |
|
core.js | File | 48.68 KB | 0644 |
|
core.min.js | File | 20.94 KB | 0644 |
|
datepicker.js | File | 80.56 KB | 0644 |
|
datepicker.min.js | File | 35.87 KB | 0644 |
|
dialog.js | File | 23.03 KB | 0644 |
|
dialog.min.js | File | 12.65 KB | 0644 |
|
draggable.js | File | 34.59 KB | 0644 |
|
draggable.min.js | File | 17.89 KB | 0644 |
|
droppable.js | File | 12.57 KB | 0644 |
|
droppable.min.js | File | 6.49 KB | 0644 |
|
effect-blind.js | File | 1.58 KB | 0644 |
|
effect-blind.min.js | File | 864 B | 0644 |
|
effect-bounce.js | File | 2.58 KB | 0644 |
|
effect-bounce.min.js | File | 975 B | 0644 |
|
effect-clip.js | File | 1.52 KB | 0644 |
|
effect-clip.min.js | File | 780 B | 0644 |
|
effect-drop.js | File | 1.54 KB | 0644 |
|
effect-drop.min.js | File | 737 B | 0644 |
|
effect-explode.js | File | 2.83 KB | 0644 |
|
effect-explode.min.js | File | 1.08 KB | 0644 |
|
effect-fade.js | File | 946 B | 0644 |
|
effect-fade.min.js | File | 509 B | 0644 |
|
effect-fold.js | File | 2.11 KB | 0644 |
|
effect-fold.min.js | File | 1004 B | 0644 |
|
effect-highlight.js | File | 1.19 KB | 0644 |
|
effect-highlight.min.js | File | 632 B | 0644 |
|
effect-puff.js | File | 973 B | 0644 |
|
effect-puff.min.js | File | 494 B | 0644 |
|
effect-pulsate.js | File | 1.51 KB | 0644 |
|
effect-pulsate.min.js | File | 672 B | 0644 |
|
effect-scale.js | File | 1.32 KB | 0644 |
|
effect-scale.min.js | File | 707 B | 0644 |
|
effect-shake.js | File | 1.82 KB | 0644 |
|
effect-shake.min.js | File | 830 B | 0644 |
|
effect-size.js | File | 5.27 KB | 0644 |
|
effect-size.min.js | File | 2.42 KB | 0644 |
|
effect-slide.js | File | 1.9 KB | 0644 |
|
effect-slide.min.js | File | 901 B | 0644 |
|
effect-transfer.js | File | 866 B | 0644 |
|
effect-transfer.min.js | File | 426 B | 0644 |
|
effect.js | File | 40.96 KB | 0644 |
|
effect.min.js | File | 16.93 KB | 0644 |
|
menu.js | File | 18.41 KB | 0644 |
|
menu.min.js | File | 9.88 KB | 0644 |
|
mouse.js | File | 6.05 KB | 0644 |
|
mouse.min.js | File | 3.32 KB | 0644 |
|
progressbar.js | File | 4.12 KB | 0644 |
|
progressbar.min.js | File | 2.48 KB | 0644 |
|
resizable.js | File | 29.62 KB | 0644 |
|
resizable.min.js | File | 18.27 KB | 0644 |
|
selectable.js | File | 7.92 KB | 0644 |
|
selectable.min.js | File | 4.38 KB | 0644 |
|
selectmenu.js | File | 15.75 KB | 0644 |
|
selectmenu.min.js | File | 9.13 KB | 0644 |
|
slider.js | File | 19.1 KB | 0644 |
|
slider.min.js | File | 10.48 KB | 0644 |
|
sortable.js | File | 46.45 KB | 0644 |
|
sortable.min.js | File | 24.85 KB | 0644 |
|
spinner.js | File | 14.03 KB | 0644 |
|
spinner.min.js | File | 7.44 KB | 0644 |
|
tabs.js | File | 23.02 KB | 0644 |
|
tabs.min.js | File | 11.66 KB | 0644 |
|
tooltip.js | File | 14.06 KB | 0644 |
|
tooltip.min.js | File | 6.04 KB | 0644 |
|