Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/04/2012, 09:58
Avatar de Dafonz
Dafonz
 
Fecha de Ingreso: octubre-2009
Mensajes: 127
Antigüedad: 14 años, 6 meses
Puntos: 36
Respuesta: Mover un enlace de un menu con rollover

Como veo en la hoja de estilos que le pones line-height:10em puedes jugar con eso para también animarlo y bajar el texto, quedaría algo así:

Código Javascript:
Ver original
  1. $("li.link").hover(function(){
  2.             $(this).animate({ height: "130px" });
  3.             $(this).children("a").animate({"line-height":"14em" });
  4.            
  5.         }, function() {
  6.             $(this).animate({ height: "90px" });
  7.             $(this).children("a").animate({"line-height":"10em" });
  8.         });
  9.        
  10.         $(".current").hover(function(){
  11.             $(this).animate({ height: "130px" });
  12.         });