Tengo varias webs en el mismo hosting, y veo sorprendido que están todas fuera de combate desde las 6 de la mañana. Sin embargo puedo entrar a editarlas por el cPanel. ¿Es normal eso?
Gracias, un saludo.
Gracias, un saludo.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú // interval between items
var itemInterval = 5500;
var infiniteLoop;//this contains the id of the interval to be used in clearinterval by the way
setTimeout(function(){
// this code will run only once, one second after the page loads.
myFunc();
infiniteLoop = setInterval(myFunc, itemInterval);
// commence loop that will run forever unless you use clearinterval(infiniteLoop);
}, 1000);
// start loop
function myFunc() {
// this code will run every time the function is called
// initial fade out
$('.rotating-item').eq(currentItem).fadeOut(fadeTime);
// set counter
if (currentItem == numberOfItem -1) {
currentItem = 0;
} else {
currentItem++;
}
// next item fade in
$('.rotating-item').eq(currentItem).fadeIn(fadeTime);
}
$(document).ready(function(){
$("#im02,#im03,#im04,#im05").css("display","none");
slide();
function slide() {
$("#im01").fadeIn(2000);
$("#im01").delay(2000);
$("#im01").fadeOut(1000);
$("#im01").fadeOut(2000, function(){
$("#im02").fadeIn(2000);
$("#im02").delay(1000);
$("#im02").fadeOut(1000);
$("#im02").fadeOut(2000, function(){
$("#im03").fadeIn(2000);
$("#im03").delay(1000);
$("#im03").fadeOut(1000);
$("#im03").fadeOut(2000, function(){
$("#im04").fadeIn(2000);
$("#im04").delay(1000);
$("#im04").fadeOut(1000);
$("#im04").fadeOut(2000, function(){
$("#im05").fadeIn(2000);
$("#im05").delay(1000);
$("#im05").fadeOut(1000);
$.slide();
});
});
});
});
});
}
});