You can do something like this, this is a full toggle version:
$("#mySelector").animate({ height: 'toggle', opacity: 'toggle' }, 'slow');
For strictly a fadeout:
$("#mySelector").animate({ height: 0, opacity: 0 }, 'slow');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…