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

YA LO RESOLVI, muchas gracias a ti por tus soluciones me diste muchas ideas mil gracias por tu tiempo , solo le quite la linea que empezaba por .end y otras modificaciones pequeñas.


Código:
$(function() { 
		var next = function()
		{
		
        $('#slideshow img').not(':random').hide(); 
        setInterval(function(){
            $('#slideshow img:visible').fadeOut('slow')
            .siblings('img:random').fadeIn('slow')
          
        }, 2000);
		}
        next();
		});