Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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.57
KB
-rw-r--r--
effect-blind.min.js
902
B
-rw-r--r--
effect-bounce.js
2.56
KB
-rw-r--r--
effect-bounce.min.js
1.26
KB
-rw-r--r--
effect-clip.js
1.51
KB
-rw-r--r--
effect-clip.min.js
848
B
-rw-r--r--
effect-drop.js
1.52
KB
-rw-r--r--
effect-drop.min.js
813
B
-rw-r--r--
effect-explode.js
2.83
KB
-rw-r--r--
effect-explode.min.js
1.22
KB
-rw-r--r--
effect-fade.js
934
B
-rw-r--r--
effect-fade.min.js
369
B
-rw-r--r--
effect-fold.js
2.1
KB
-rw-r--r--
effect-fold.min.js
1.24
KB
-rw-r--r--
effect-highlight.js
1.18
KB
-rw-r--r--
effect-highlight.min.js
532
B
-rw-r--r--
effect-puff.js
961
B
-rw-r--r--
effect-puff.min.js
361
B
-rw-r--r--
effect-pulsate.js
1.5
KB
-rw-r--r--
effect-pulsate.min.js
725
B
-rw-r--r--
effect-scale.js
1.31
KB
-rw-r--r--
effect-scale.min.js
639
B
-rw-r--r--
effect-shake.js
1.81
KB
-rw-r--r--
effect-shake.min.js
1.02
KB
-rw-r--r--
effect-size.js
5.21
KB
-rw-r--r--
effect-size.min.js
3.15
KB
-rw-r--r--
effect-slide.js
1.89
KB
-rw-r--r--
effect-slide.min.js
1.05
KB
-rw-r--r--
effect-transfer.js
854
B
-rw-r--r--
effect-transfer.min.js
278
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : effect-blind.js
/*! * jQuery UI Effects Blind 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: Blind Effect //>>group: Effects //>>description: Blinds the element. //>>docs: http://api.jqueryui.com/blind-effect/ //>>demos: http://jqueryui.com/effect/ ( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "../version", "../effect" ], factory ); } else { // Browser globals factory( jQuery ); } }( function( $ ) { return $.effects.define( "blind", "hide", function( options, done ) { var map = { up: [ "bottom", "top" ], vertical: [ "bottom", "top" ], down: [ "top", "bottom" ], left: [ "right", "left" ], horizontal: [ "right", "left" ], right: [ "left", "right" ] }, element = $( this ), direction = options.direction || "up", start = element.cssClip(), animate = { clip: $.extend( {}, start ) }, placeholder = $.effects.createPlaceholder( element ); animate.clip[ map[ direction ][ 0 ] ] = animate.clip[ map[ direction ][ 1 ] ]; if ( options.mode === "show" ) { element.cssClip( animate.clip ); if ( placeholder ) { placeholder.css( $.effects.clipToBox( animate ) ); } animate.clip = start; } if ( placeholder ) { placeholder.animate( $.effects.clipToBox( animate ), options.duration, options.easing ); } element.animate( animate, { queue: false, duration: options.duration, easing: options.easing, complete: done } ); } ); } ) );
Close