Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
javascript /
jquery-ui /
ui /
effects /
Delete
Unzip
Name
Size
Permission
Date
Action
effect-blind.js
1.6
KB
-rw-r--r--
2022-07-14 19:10
effect-blind.min.js
928
B
-rw-r--r--
2022-07-28 06:05
effect-bounce.js
2.59
KB
-rw-r--r--
2022-07-14 19:10
effect-bounce.min.js
1.25
KB
-rw-r--r--
2022-07-28 06:05
effect-clip.js
1.54
KB
-rw-r--r--
2022-07-14 19:10
effect-clip.min.js
912
B
-rw-r--r--
2022-07-28 06:05
effect-drop.js
1.55
KB
-rw-r--r--
2022-07-14 19:10
effect-drop.min.js
836
B
-rw-r--r--
2022-07-28 06:05
effect-explode.js
2.85
KB
-rw-r--r--
2022-07-14 19:10
effect-explode.min.js
1.2
KB
-rw-r--r--
2022-07-28 06:05
effect-fade.js
964
B
-rw-r--r--
2022-07-14 19:10
effect-fade.min.js
395
B
-rw-r--r--
2022-07-28 06:05
effect-fold.js
2.13
KB
-rw-r--r--
2022-07-14 19:10
effect-fold.min.js
1.24
KB
-rw-r--r--
2022-07-28 06:05
effect-highlight.js
1.21
KB
-rw-r--r--
2022-07-14 19:10
effect-highlight.min.js
558
B
-rw-r--r--
2022-07-28 06:05
effect-puff.js
991
B
-rw-r--r--
2022-07-14 19:10
effect-puff.min.js
377
B
-rw-r--r--
2022-07-28 06:05
effect-pulsate.js
1.53
KB
-rw-r--r--
2022-07-14 19:10
effect-pulsate.min.js
715
B
-rw-r--r--
2022-07-28 06:05
effect-scale.js
1.34
KB
-rw-r--r--
2022-07-14 19:10
effect-scale.min.js
626
B
-rw-r--r--
2022-07-28 06:05
effect-shake.js
1.84
KB
-rw-r--r--
2022-07-14 19:10
effect-shake.min.js
1.02
KB
-rw-r--r--
2022-07-28 06:05
effect-size.js
5.29
KB
-rw-r--r--
2022-07-14 19:10
effect-size.min.js
3.22
KB
-rw-r--r--
2022-07-28 06:05
effect-slide.js
1.92
KB
-rw-r--r--
2022-07-14 19:10
effect-slide.min.js
1.07
KB
-rw-r--r--
2022-07-28 06:05
effect-transfer.js
884
B
-rw-r--r--
2022-07-14 19:10
effect-transfer.min.js
302
B
-rw-r--r--
2022-07-28 06:05
Save
Rename
/*! * jQuery UI Effects Clip 1.13.2 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: Clip Effect //>>group: Effects //>>description: Clips the element on and off like an old TV. //>>docs: http://api.jqueryui.com/clip-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( "clip", "hide", function( options, done ) { var start, animate = {}, element = $( this ), direction = options.direction || "vertical", both = direction === "both", horizontal = both || direction === "horizontal", vertical = both || direction === "vertical"; start = element.cssClip(); animate.clip = { top: vertical ? ( start.bottom - start.top ) / 2 : start.top, right: horizontal ? ( start.right - start.left ) / 2 : start.right, bottom: vertical ? ( start.bottom - start.top ) / 2 : start.bottom, left: horizontal ? ( start.right - start.left ) / 2 : start.left }; $.effects.createPlaceholder( element ); if ( options.mode === "show" ) { element.cssClip( animate.clip ); animate.clip = start; } element.animate( animate, { queue: false, duration: options.duration, easing: options.easing, complete: done } ); } ); } );