Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
nft_project.io /
5 /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
revolution
[ DIR ]
drwxrwxrwx
2022-03-28 13:11
bootstrap.min.js
76.58
KB
-rwxrwxrwx
2022-03-28 13:11
functions.js
25.97
KB
-rwxrwxrwx
2022-03-28 13:11
jquery-3.1.1.min.js
84.68
KB
-rwxrwxrwx
2022-03-28 13:11
jquery-3.6.0.min.js
87.41
KB
-rwxrwxrwx
2022-03-28 13:11
jquery-countTo.js
2.62
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.appear.js
3.26
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.background-video.js
7.4
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.cubeportfolio.min.js
76.77
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.fancybox.min.js
56.39
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.matchHeight-min.js
3.31
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.mb.vimeo_player.js
32.99
KB
-rwxrwxrwx
2022-03-28 13:11
jquery.simpleTicker.js
4.33
KB
-rwxrwxrwx
2022-03-28 13:11
owl.carousel.min.js
41.77
KB
-rwxrwxrwx
2022-03-28 13:11
parallaxie.js
2.02
KB
-rwxrwxrwx
2022-03-28 13:11
particles.min.js
6.12
KB
-rwxrwxrwx
2022-03-28 13:11
popper.min.js
18.74
KB
-rwxrwxrwx
2022-03-28 13:11
typewriter.js
10.47
KB
-rwxrwxrwx
2022-03-28 13:11
wow.min.js
8.22
KB
-rwxrwxrwx
2022-03-28 13:11
Save
Rename
/*! Copyright (c) 2016 THE ULTRASOFT (http://theultrasoft.com) * Licensed under the MIT License (LICENSE.txt). * * Project: Parallaxie * Version: 0.5 * * Requires: jQuery 1.9+ */ (function( $ ){ $.fn.parallaxie = function( options ){ var options = $.extend({ speed: 0.2, repeat: 'no-repeat', size: 'cover', pos_x: 'center', offset: 0, }, options ); this.each(function(){ var $el = $(this); var local_options = $el.data('parallaxie'); if( typeof local_options != 'object' ) local_options = {}; local_options = $.extend( {}, options, local_options ); var image_url = $el.data('image'); if( typeof image_url == 'undefined' ){ image_url = $el.css('background-image'); if( !image_url ) return; // APPLY DEFAULT CSS var pos_y = local_options.offset + ($el.offset().top - $(window).scrollTop()) * (1 - local_options.speed ); $el.css({ 'background-image': image_url, 'background-size': local_options.size, 'background-repeat': local_options.repeat, 'background-attachment': 'fixed', 'background-position': local_options.pos_x + ' ' + pos_y + 'px', }); $(window).scroll( function(){ //var pos_y = - ( $(window).scrollTop() - $el.offset().top ) * ( 1 + local_options.speed ) - ( $el.offset().top * local_options.speed ); var pos_y = local_options.offset + ($el.offset().top - $(window).scrollTop()) * (1 - local_options.speed ); $el.data( 'pos_y', pos_y ); $el.css( 'background-position', local_options.pos_x + ' ' + pos_y + 'px' ); } ); } }); return this; }; }( jQuery ));