EVOLUTION-NINJA
Edit File: jquery.lineProgressbar.js
!function(r){"use strict";r.fn.LineProgressbar=function(o){o=r.extend({percentage:null,ShowProgressCount:!0,duration:1e3,fillBackgroundColor:"#3498db",backgroundColor:"#EEEEEE",radius:"0px",height:"10px",width:"100%"},o);return this.each(function(n,i){r(i).html('<div class="progressbar"><div class="proggress"></div><div class="percentCount"></div></div>');var e=r(i).find(".proggress"),s=r(i).find(".progressbar");e.css({backgroundColor:o.fillBackgroundColor,height:o.height,borderRadius:o.radius}),s.css({width:o.width,backgroundColor:o.backgroundColor,borderRadius:o.radius}),e.animate({width:o.percentage+"%"},{step:function(n){o.ShowProgressCount&&r(i).find(".percentCount").text(Math.round(n)+"%")},duration:o.duration})})}}(jQuery);