Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.191.72.220
54 Domain
7.3.33
dpclient
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
/
home /
dpclient /
public_html /
milovo /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.bundle.min.js
76.9
KB
-rw-r--r--
isotope.pkgd.min.js
34.63
KB
-rw-r--r--
jquery-3.6.0.min.js
87.41
KB
-rw-r--r--
jquery-ui.js
535.27
KB
-rw-r--r--
jquery.magnific-popup.min.js
19.75
KB
-rw-r--r--
jquery.nice-select.js
5.87
KB
-rw-r--r--
main.js
21.38
KB
-rw-r--r--
odometer.min.js
10.02
KB
-rw-r--r--
select2.min.js
65.04
KB
-rw-r--r--
slick.js
89.81
KB
-rw-r--r--
swiper-bundle.js
323.11
KB
-rw-r--r--
swiper-bundle.min.js
132.01
KB
-rw-r--r--
viewport.jquery.js
1.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : viewport.jquery.js
/* ==================================================== * jQuery Is In Viewport. * https://github.com/frontid/jQueryIsInViewport * Marcelo Iván Tosco (capynet) * Inspired on https://stackoverflow.com/a/40658647/1413049 * ==================================================== */ !function ($) { 'use strict' var Class = function (el, cb) { this.$el = $(el); this.cb = cb; this.watch(); return this; }; Class.prototype = { /** * Checks if the element is in. * * @returns {boolean} */ isIn: function isIn() { var _self = this; var $win = $(window); var elementTop = _self.$el.offset().top; var elementBottom = elementTop + _self.$el.outerHeight(); var viewportTop = $win.scrollTop(); var viewportBottom = viewportTop + $win.height(); return elementBottom > viewportTop && elementTop < viewportBottom; }, /** * Launch a callback indicating when the element is in and when is out. */ watch: function () { var _self = this; var _isIn = false; $(window).on('resize scroll', function () { if (_self.isIn() && _isIn === false) { _self.cb.call(_self.$el, 'entered'); _isIn = true; } if (_isIn === true && !_self.isIn()) { _self.cb.call(_self.$el, 'leaved'); _isIn = false; } }) } }; // jQuery plugin. //----------------------------------------------------------- $.fn.isInViewport = function (cb) { return this.each(function () { var $element = $(this); var data = $element.data('isInViewport'); if (!data) { $element.data('isInViewport', (new Class(this, cb))); } }) } }(window.jQuery);
Close