Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
logotipos /
[ HOME SHELL ]
Name
Size
Permission
Action
img
[ DIR ]
drwxrwxr-x
banda de guerra y escolta logo.png
1.01
MB
-rwxrwxr-x
BDig.png
7.07
KB
-rwxrwxr-x
demo.css
2.49
KB
-rwxrwxr-x
index.html
5.42
KB
-rwxrwxr-x
ingenieria agricultura.png
142.19
KB
-rwxrwxr-x
INI.png
1.4
MB
-rwxrwxr-x
institucional corregido.png
14.98
MB
-rwxrwxr-x
IRIC.png
406.07
KB
-rwxrwxr-x
ISP.jpg
7.1
MB
-rwxrwxr-x
ISP.png
1.58
MB
-rwxrwxr-x
lobo.png
1.21
MB
-rwxrwxr-x
LOGO AEP.jpg
5.64
MB
-rwxrwxr-x
LOGO AEP.png
6.94
MB
-rwxrwxr-x
logo ecologia.png
119
KB
-rwxrwxr-x
LOGO FEP.png
6.88
MB
-rwxrwxr-x
logo IGP.jpg
2.63
MB
-rwxrwxr-x
logo IGP.png
2.26
MB
-rwxrwxr-x
logo imi ing.jpg
722.54
KB
-rwxrwxr-x
logo imi ing.png
275.31
KB
-rwxrwxr-x
logo iti ing.jpg
1.28
MB
-rwxrwxr-x
logo iti ing.png
440.5
KB
-rwxrwxr-x
logo LGNP.png
2.25
MB
-rwxrwxr-x
logo minas ing.png
876.42
KB
-rwxrwxr-x
logo mmp tsu VECTORIZADO.jpg
679.71
KB
-rwxrwxr-x
logo mmp tsu VECTORIZADO-Recuperado.png
103.59
KB
-rwxrwxr-x
logo pim tsu.jpg
1.8
MB
-rwxrwxr-x
logo pim tsu.png
5.53
MB
-rwxrwxr-x
logo tic tsu.jpg
770.3
KB
-rwxrwxr-x
logo tic tsu.png
2.14
MB
-rwxrwxr-x
logotird.png
549.85
KB
-rwxrwxr-x
logo utp trazos fondos obscuros.png
428.79
KB
-rwxrwxr-x
script.js
1.92
KB
-rwxrwxr-x
tsu minas logo 4.png
3.28
MB
-rwxrwxr-x
tuutp.png
452.94
KB
-rwxrwxr-x
UTP.png
685.57
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : script.js
$(document).ready(function(){ /* This code is executed after the DOM has been completely loaded */ var totWidth=0; var positions = new Array(); $('#slides .slide').each(function(i){ /* Traverse through all the slides and store their accumulative widths in totWidth */ positions[i]= totWidth; totWidth += $(this).width(); /* The positions array contains each slide's commulutative offset from the left part of the container */ if(!$(this).width()) { alert("Please, fill in width & height for all your images!"); return false; } }); $('#slides').width(totWidth); /* Change the cotnainer div's width to the exact width of all the slides combined */ $('#menu ul li a').click(function(e,keepScroll){ /* On a thumbnail click */ $('li.menuItem').removeClass('act').addClass('inact'); $(this).parent().addClass('act'); var pos = $(this).parent().prevAll('.menuItem').length; $('#slides').stop().animate({marginLeft:-positions[pos]+'px'},450); /* Start the sliding animation */ e.preventDefault(); /* Prevent the default action of the link */ // Stopping the auto-advance if an icon has been clicked: if(!keepScroll) clearInterval(itvl); }); $('#menu ul li.menuItem:first').addClass('act').siblings().addClass('inact'); /* On page load, mark the first thumbnail as active */ /***** * * Enabling auto-advance. * ****/ var current=1; function autoAdvance() { if(current==-1) return false; $('#menu ul li a').eq(current%$('#menu ul li a').length).trigger('click',[true]); // [true] will be passed as the keepScroll parameter of the click function on line 28 current++; } // The number of seconds that the slider will auto-advance in: var changeEvery = 10; var itvl = setInterval(function(){autoAdvance()},changeEvery*1000); /* End of customizations */ });
Close