嘿,我有一个 JSFiddle,我一直在努力让它从下到上进行动画处理,而不是从上到下目前正在做的事情。
这将用作图像前面的筹款人金额的动画条形图,该条形图将代表他们迄今为止筹集的美元金额。
jsfiddle 在这里:http: //jsfiddle.net/kboucher/YDruG/
任何帮助都会很棒!!!
更新
HTML 代码:
<a href="#" id="button">View 100 (out of 500)</a>
<div id="barGraph-container">
<div id='barGraph'></div>
</div>
JS:
$('#button').click(function(){
$('#barGraph').animate({height:'72px'}, 500);
});
CSS:
#barGraph-container {
height: 200px;
position: relative;
}
#barGraph {
height: 200px;
width: 50px;
background-color: #000;
position: absolute;
bottom: 0;
}