バナーをアニメーション化したいのですが、ここでは上部からアニメーション化されており、アニメーションを下部から開始したいと考えています。オレンジ色のバナーが下に消えること。それが可能だ ?
-->私のフィドル<--
$(".myDiv").mouseover(function() {
$('#'+this.id+'bis').stop().animate({height: '0px'}); });
$(".myDiv").mouseout(function() {
$('#'+this.id+'bis').stop().animate({height: '50px'}); });