jQuery圆形百分比进度条插件circleChart.js是一款可以将指定的元素转换为html5 canvas,生成圆形百分比进度条网页特效。
js代码
<script src=\"dist/circleChart.min.js\"></script> <script> $(\".circleChart#1\").circleChart({ size:300 }); $(\".circleChart#0\").circleChart({ size: 300, value: 50, text: 0, onDraw: function(el, circle) { circle.text(Math.round(circle.value) + \"%\"); } }); setInterval(function() { $(\"#0\").circleChart({ value: Math.random() * 100 }); }, 4000); </script>
暂无评论内容