Claro, algo
así. La idea es alterar a los atributos
opacity
y
height
.
Código Javascript
:
Ver original//Ocultar
$("#id_elemento").animate({
opacity: 0,
height: 0
}, 500);
//Mostrar
$("#id_elemento").animate({
opacity: 1,
height: "15rem"
}, 500);
Saludos