Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
javascript /
jquery-ui /
ui /
effects /
[ HOME SHELL ]
Name
Size
Permission
Action
effect-blind.js
1.6
KB
-rw-r--r--
effect-blind.min.js
928
B
-rw-r--r--
effect-bounce.js
2.59
KB
-rw-r--r--
effect-bounce.min.js
1.25
KB
-rw-r--r--
effect-clip.js
1.54
KB
-rw-r--r--
effect-clip.min.js
912
B
-rw-r--r--
effect-drop.js
1.55
KB
-rw-r--r--
effect-drop.min.js
836
B
-rw-r--r--
effect-explode.js
2.85
KB
-rw-r--r--
effect-explode.min.js
1.2
KB
-rw-r--r--
effect-fade.js
964
B
-rw-r--r--
effect-fade.min.js
395
B
-rw-r--r--
effect-fold.js
2.13
KB
-rw-r--r--
effect-fold.min.js
1.24
KB
-rw-r--r--
effect-highlight.js
1.21
KB
-rw-r--r--
effect-highlight.min.js
558
B
-rw-r--r--
effect-puff.js
991
B
-rw-r--r--
effect-puff.min.js
377
B
-rw-r--r--
effect-pulsate.js
1.53
KB
-rw-r--r--
effect-pulsate.min.js
715
B
-rw-r--r--
effect-scale.js
1.34
KB
-rw-r--r--
effect-scale.min.js
626
B
-rw-r--r--
effect-shake.js
1.84
KB
-rw-r--r--
effect-shake.min.js
1.02
KB
-rw-r--r--
effect-size.js
5.29
KB
-rw-r--r--
effect-size.min.js
3.22
KB
-rw-r--r--
effect-slide.js
1.92
KB
-rw-r--r--
effect-slide.min.js
1.07
KB
-rw-r--r--
effect-transfer.js
884
B
-rw-r--r--
effect-transfer.min.js
302
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : effect-explode.js
/*! * jQuery UI Effects Explode 1.13.1 * 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", "../version", "../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(); } } ); } );
Close