环形进度条

270 阅读1分钟

$("#circle1").circleChart({

                color:'#68c4ca',
                
                size: 80,
                
                value: data.capacity,
                
                text: 0,
                
                backgroundColor:'#9dbddf',
                
                backgroundFix: false,
                
                onDraw: function(el, circle) {
                
                    circle.text(Math.round(circle.value)+ "%");
                    
                }
                
            });
            <!--存放的DIV-->
           <div id="circle1" style="height:80px;"></div>
           <!--引入的文件-->
           <script src="js/jquery.js"></script>

           <script src="js/circleChart.min.js"></script>