在页面中引入jquery和circleChart.min.js文件。
1 2 | < script src = "path/to/jquery.min.js" ></ script > < script src = "path/to/circleChart.min.js" ></ script > |
HTML结构
使用一个<div>元素作为该圆形百分比进度条的HTML结构:
1 | < div class = "circleChart" id = "circle1" ></ div > |
初始化插件
在页面DOM元素加载完毕,可以通过circleChart()方法来初始化该圆形百分比进度条插件。
1 | $( "#circle1" ).circleChart(); |
circleChart.js圆形百分比进度条插件的默认配置参数如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | color: "#3459eb" , backgroundColor: "#e6e6e6" , background: true , speed: 2000, widthRatio: 0.2, value: 66, unit: "percent" , counterclockwise: false , size: 110, startAngle: 0, animate: true , backgroundFix: true , lineCap: "round" , animation: "easeInOutCubic" , text: false , redraw: false , cAngle: 0, textCenter: true , textSize: false , textWeight: "normal" , textFamily: "sans-serif" , relativeTextSize: 1 / 7, autoCss: true , onDraw: false |
1 2 3 4 5 6 | $( ".circleChart" ).circleChart({ value: 68, startAngle: 180, speed: 3000, animation: "easeInOutCubic" }); |
1 2 3 4 5 | setInterval( function () { $( ".circleChart" ).circleChart({ value: Math.random()*100 }); }, 4000); |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com