Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
insepet /
wp-content /
themes /
micron /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin-scripts.js
7.23
KB
-rw-r--r--
controller.js
23.97
KB
-rw-r--r--
fromTo.js
914
B
-rw-r--r--
imagesloaded.pkgd.min.js
6.42
KB
-rw-r--r--
jquery.animate-colors-min.js
2.69
KB
-rw-r--r--
jquery.colorbox-min.js
10.64
KB
-rw-r--r--
jquery.contentcarousel.js
5.38
KB
-rw-r--r--
jquery.easing.min.js
5.42
KB
-rw-r--r--
jquery.easy-pie-chart.js
6.44
KB
-rw-r--r--
jquery.flexslider-min.js
20.92
KB
-rw-r--r--
jquery.inview.min.js
1.23
KB
-rw-r--r--
jquery.mobile-events.min.js
13.29
KB
-rw-r--r--
jquery.mousewheel.js
7.18
KB
-rw-r--r--
jquery.ninzio-slider-preview.j...
2.55
KB
-rw-r--r--
jquery.ninzio-slider.js
9.37
KB
-rw-r--r--
jquery.simplr.smoothscroll.js
1.26
KB
-rw-r--r--
jquery.singlePageNav.min.js
2.49
KB
-rw-r--r--
jquery.ui.totop.min.js
1.3
KB
-rw-r--r--
masonry.pkgd.min.js
24.1
KB
-rw-r--r--
media-modal.js
1.78
KB
-rw-r--r--
modernizer.js
14.27
KB
-rw-r--r--
multi-post-thumbnails-admin.js
1.89
KB
-rw-r--r--
retina-1.1.0.min.js
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.contentcarousel.js
/* Content Carousel 1.0.0 http://www.ninzio.com Copyright 2014 Ninzio Team */ ;(function($, window, document, undefined) { // DEFAULTS var defaults = { caItemClass : 'ca-item', caWrapperClass : 'ca-wrapper', caNavClass : 'ca-controls', caBulletsClass : 'ca-bullets', sliderSpeed : 450, sliderEasing : 'easeOutCubic', sliderBullets : false, correction : 0.002, autoplay : false }; // CONSTRUCTOR FUNCTION function ContentCarousel (element, options){ this.config = $.extend({}, defaults, options); this.element = element; this.init(); } // METHOD ContentCarousel.prototype.init = function(){ var caContainer = this.element, caControls = caContainer.find('.'+ this.config.caNavClass), caBullets = caContainer.find('.'+ this.config.caBulletsClass), caWrapper = caContainer.find('.'+ this.config.caWrapperClass), caItem = caContainer.find('.'+ this.config.caItemClass), speed = this.config.sliderSpeed, easing = this.config.sliderEasing, bullets = this.config.sliderBullets, autoplay = this.config.autoplay, caItemW = '', fm = 0, correction = this.config.correction, totalCaItem = caItem.length, pos = 0, columns = 1; function responsiveColumn(){ if(Modernizr.mq("only screen and (max-width: 767px)")){ columns = 1; } else { columns = caWrapper.hasClass('columns-1') ? 1 : caWrapper.hasClass('columns-2') ? 2 : caWrapper.hasClass('columns-3') ? 3 : caWrapper.hasClass('columns-4') ? (Modernizr.mq("only screen and (max-width: 1023px)")) ? 2 : 4 : caWrapper.hasClass('columns-5') ? 5 : caWrapper.hasClass('columns-6') ? (Modernizr.mq("only screen and (max-width: 1023px)")) ? 3 : 6 : 1; } return columns; } function responsiveMeasurement(){ caItemW = Math.round(caItem.first().outerWidth()); if(columns == 1){ fm = caItemW; } else { fm = caItemW + Math.round(parseInt(caWrapper.width()*correction)); } return fm; } function position(control){ pos += ~~(control === "ca-nav-next") || -1; pos = (pos < 0) ? 0 : (pos > totalCaItem - columns) ? totalCaItem - columns : pos % totalCaItem; return pos; } function navigate($element){ $element .stop() .animate({'margin-left' : -fm * pos + 'px'}, speed, easing); } function smartNav(){ if((columns === 1 && totalCaItem > 1) || (columns === 2 && totalCaItem > 2) || (columns === 3 && totalCaItem > 3) || (columns === 4 && totalCaItem > 4) || (columns === 5 && totalCaItem > 5) || (columns === 6 && totalCaItem > 6)){ caControls.removeClass('hidden'); } else { caControls.addClass('hidden'); } } function bulletsNavigation(bulletArray, condition){ if (condition) {$(bulletArray[pos]).addClass('current-bullet').siblings().removeClass('current-bullet');}; } responsiveColumn(); responsiveMeasurement(); smartNav(); if (bullets === true) { if(columns === 1 && totalCaItem > 1){ caBullets.removeClass('hidden'); } else { caBullets.addClass('hidden'); } var bulletsContainer = caBullets.children('.container'); for (var i = 1; i <= caItem.length; i++) { $('<span> </span>').appendTo(bulletsContainer); }; var bulletItems = bulletsContainer.find('span'); bulletItems.first().addClass('current-bullet'); bulletItems.on('click', function(){ var $this = $(this); pos = $this.index(); $this.addClass('current-bullet').siblings().removeClass('current-bullet'); caWrapper.stop().animate({'margin-left' : -fm * pos + 'px'}, speed, easing); }); }; caControls.find('span.ca-nav-prev').on('click', function( event ) { position($(this).attr('class')); navigate(caWrapper); bulletsNavigation(bulletItems,bullets); }); caControls.find('span.ca-nav-next').on('click', function( event ) { position($(this).attr('class')); navigate(caWrapper); bulletsNavigation(bulletItems,bullets); }); var control = ''; caWrapper .on('swipeleft', function(){ control = 'ca-nav-next'; position(control); navigate($(this)); bulletsNavigation(bulletItems,bullets); }) .on('swiperight', function(){ control = 'ca-nav-prev'; position(control); navigate($(this)); bulletsNavigation(bulletItems,bullets); }) if (autoplay == true) { if(totalCaItem > 1){ var Autoplay; function autoPlayIntervalStart(){ Autoplay = window.setInterval(function(){ var autoplayStatus = false; if (autoplayStatus == false) { caControls.find('span.ca-nav-next').trigger('click'); autoplayStatus = true; }; if (pos == (totalCaItem - columns)) { navigate(caWrapper); pos = -1; autoplayStatus = false; }; }, 3000); } function autoPlayIntervalStop(){ window.clearInterval(Autoplay); } caContainer.hover(autoPlayIntervalStop,autoPlayIntervalStart); autoPlayIntervalStart(); } }; $(window).resize(function(){ responsiveColumn(); responsiveMeasurement(); smartNav(); if(pos != 0){pos = 0;} navigate(caWrapper); bulletsNavigation(bulletItems,bullets); }); } // EXTENDING NEW FUNCTION $.fn.ContentCarousel = function(options){ new ContentCarousel(this, options); return this; }; } (jQuery, window, document));
Close