Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/04/2009, 08:14
Avatar de TonyChile
TonyChile
 
Fecha de Ingreso: marzo-2009
Ubicación: Maipú, Santiago
Mensajes: 422
Antigüedad: 15 años, 9 meses
Puntos: 7
Respuesta: Efecto puerta garaje

Creo que ya se lo que es pero lo debes probar te falto poner stop()
Código javascript:
Ver original
  1. <script type="text/javascript">
  2.         $(document).ready(function() {
  3.  
  4.             //Set css in Firefox (Required to use the backgroundPosition js)
  5.             $('#shutter1').css({backgroundPosition: '0px 0px'});
  6.             $('#shutter2').css({backgroundPosition: '0px 0px'});
  7.             $('#shutter3').css({backgroundPosition: '0px 0px'});
  8.             $('#shutter4').css({backgroundPosition: '0px 0px'});
  9.  
  10.             //Animate the shutter  
  11.             $(".link").hover(function(){
  12.                   $(this).parent().stop().animate({backgroundPosition: '(0px -100px)'}, 500 );
  13.                 }, function() {
  14.                   $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
  15.             });
  16.          });
  17.     </script>

tu lo tienes asi:
Código javascript:
Ver original
  1. <script type="text/javascript">
  2.         $(document).ready(function() {
  3.  
  4.             //Set css in Firefox (Required to use the backgroundPosition js)
  5.             $('#shutter1').css({backgroundPosition: '0px 0px'});
  6.             $('#shutter2').css({backgroundPosition: '0px 0px'});
  7.             $('#shutter3').css({backgroundPosition: '0px 0px'});
  8.             $('#shutter4').css({backgroundPosition: '0px 0px'});
  9.  
  10.             //Animate the shutter  
  11.             $(".link").hover(function(){
  12.                   $(this).parent().animate({backgroundPosition: '(0px -100px)'}, 500 );
  13.                 }, function() {
  14.                   $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 500 );
  15.             });
  16.          });
  17.     </script>

Vee si era eso y avisas
__________________
Chilenos 100% Chilenos de Corazón
"Nuestra mayor gloria no está en no caer jamás, sino en levantarnos cada vez que caigamos"