Ver Mensaje Individual
  #18 (permalink)  
Antiguo 22/01/2012, 18:49
Avatar de madhatterdef
madhatterdef
 
Fecha de Ingreso: diciembre-2011
Ubicación: argentina
Mensajes: 213
Antigüedad: 12 años, 4 meses
Puntos: 59
Respuesta: mostrar div antes de inicializar la página

Cita:
Iniciado por madhatterdef Ver Mensaje
ya esta

<script type="text/javascript">
$(document).ready(function() {
$('#cargador').fadeOut(1000);
});
</script>

Ese número es el que define que tan lento/rápido vaya la animación puede que te sirva

Se me ocurrió una respuesta mejor

en tu js pone

Código:
$(document).ready(function ()    {
funcioncargador();
        });
         function funcioncargador(){
cargador = $('#cargador');
cargador.delay(2000)
cargador.fadeOut(1000);}
lo rojo es el tiempo