Progress Bar Fill Up Bottom-To-Top
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: So, I have a progress bar. With simple colors, it works perfectly. When I put in images, it filles top-to-bottom, not bottom-to-top, and I don't know how to fix it. Help? http://jsfiddle.net/Aiphira/1k8sddvq/ <div id = "load-form" > <div class = "load-line" ></div> </div> <center> <div class = "percent" ></div> <div class = "asd" > 2000 </div> </center> $(document).ready(function(e) { var maxonline = 6000; var currentonline = $(this).find('.asd').html(); var percent = currentonline/maxonline*100; if(percent > 100) percent = 100; if