jqueryを使用して垂直バーをアニメーション化していますが、上から下に移動しますが、下から上に必要です。
これはバーの css です:
.progress_bar_cal{
height:0px;
width:24px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
background:url(../img/grow.jpg);
margin-right:1px;
margin-top:2px;
}
そして、これはjqueryです:
$('.progress_bar_cal').each(function(){
var percent = $(this).attr('title');
$(this).animate({height : percent},1000);
});
それを機能させる方法についてのアイデアはありますか?
ありがとう!