/
home
/
techb158
/
ileadtechnology.com
/
public
/
admin
/
bower_components
/
jquery-ui
/
ui
/
/home/techb158/ileadtechnology.com/public/admin/bower_components/jquery-ui/ui
mkdir
upload
Name
Size
Mode
Actions
i18n/
-
0755
rm
minified/
-
0755
rm
.jshintrc
336
0644
edit
dl
rm
accordion.js
15021
0644
edit
dl
rm
autocomplete.js
16386
0644
edit
dl
rm
button.js
11327
0644
edit
dl
rm
core.js
7662
0644
edit
dl
rm
datepicker.js
77973
0644
edit
dl
rm
dialog.js
21805
0644
edit
dl
rm
draggable.js
34994
0644
edit
dl
rm
droppable.js
11656
0644
edit
dl
rm
effect-blind.js
2101
0644
edit
dl
rm
effect-bounce.js
2966
0644
edit
dl
rm
effect-clip.js
1645
0644
edit
dl
rm
effect-drop.js
1651
0644
edit
dl
rm
effect-explode.js
2581
0644
edit
dl
rm
effect-fade.js
733
0644
edit
dl
rm
effect-fold.js
1875
0644
edit
dl
rm
effect-highlight.js
1179
0644
edit
dl
rm
effect-puff.js
1236
0644
edit
dl
rm
effect-pulsate.js
1551
0644
edit
dl
rm
effect-scale.js
2003
0644
edit
dl
rm
effect-shake.js
2129
0644
edit
dl
rm
effect-size.js
6236
0644
edit
dl
rm
effect-slide.js
1649
0644
edit
dl
rm
effect-transfer.js
1410
0644
edit
dl
rm
effect.js
32283
0644
edit
dl
rm
index.php
53
0644
edit
dl
rm
menu.js
16980
0644
edit
dl
rm
mouse.js
5343
0644
edit
dl
rm
position.js
16092
0644
edit
dl
rm
progressbar.js
3666
0644
edit
dl
rm
resizable.js
28584
0644
edit
dl
rm
selectable.js
7136
0644
edit
dl
rm
selectmenu.js
13764
0644
edit
dl
rm
slider.js
19205
0644
edit
dl
rm
sortable.js
43380
0644
edit
dl
rm
spinner.js
12909
0644
edit
dl
rm
tabs.js
23128
0644
edit
dl
rm
tooltip.js
13045
0644
edit
dl
rm
widget.js
15814
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/public/admin/bower_components/jquery-ui/ui/effect-explode.js
(2581B)
/*! * jQuery UI Effects Explode 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/explode-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.explode = function( o, done ) { var rows = o.pieces ? Math.round( Math.sqrt( o.pieces ) ) : 3, cells = rows, el = $( this ), mode = $.effects.setMode( el, o.mode || "hide" ), show = mode === "show", // show and then visibility:hidden the element before calculating offset offset = el.show().css( "visibility", "hidden" ).offset(), // width and height of a piece width = Math.ceil( el.outerWidth() / cells ), height = Math.ceil( el.outerHeight() / rows ), pieces = [], // loop i, j, left, top, mx, my; // 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 el .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 }, o.duration || 500, o.easing, childComplete ); } } function animComplete() { el.css({ visibility: "visible" }); $( pieces ).remove(); if ( !show ) { el.hide(); } done(); } }; }));
Save
cmd:
run