Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/06/2012, 10:21
Avatar de memoadian
memoadian
Colaborador
 
Fecha de Ingreso: junio-2009
Ubicación: <?php echo 'México'?>
Mensajes: 3.696
Antigüedad: 14 años, 10 meses
Puntos: 641
Respuesta: Slideshow de texto

Ups, me falto cerrar una llave

Código Javascript:
Ver original
  1. <script type="text/javascript"/>
  2. $(document).ready(function(){
  3.         $('.movible').hover(function() {
  4.             $(this).animate({
  5.                 paddingLeft: "60px"
  6.             },{
  7.                 duration: 1000,
  8.             });
  9.         },function() {
  10.             $(this).animate({
  11.                 paddingLeft: "5px"
  12.             },{
  13.                 duration: 1000,
  14.             });
  15.         });
  16.     });
  17. </script>