我正在使用 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);
});
关于如何使其工作的任何想法?
谢谢!