Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/08/2012, 13:48
davy0324
 
Fecha de Ingreso: mayo-2012
Ubicación: Bogota
Mensajes: 45
Antigüedad: 12 años
Puntos: 0
Respuesta: Repetir galeria aleatoria en javascript

Perfecto! muchisimas gracias por tu aporte!, lo unico que no sirvio fue lo de repetir la galeria el resto lo de alineacion y fade in si funciono :)

Código HTML:
 $(function(next) { 
        $('#slideshow img').not(':random').hide(); //hide all images except one initially
        setInterval(function(){
            $('#slideshow img:visible').fadeOut('slow')
            .siblings('img:random').fadeIn('slow')
            .end().appendTo('#slideshow');
        }, 2000);
        next();
		$slide.queue('#slideshow');

    });