Animating progress bars with CSS
问题 So, I have a few different progress bars on this page - http://kaye.at/play/goals Here's my HTML & CSS: <div class="meter"><span style="width: 100%;"></span></div> .meter { height: 5px; position: relative; background: #f3efe6; z-index: 0; margin-top: -5px; overflow: hidden; } .meter > span { z-index: 50; display: block; height: 100%; background-color: #e4c465; position: relative; overflow: hidden; } I want to simply animate the progress bar so that it slowly goes up from 0% to whatever