jQuery圆形百分比进度条插件circleChart.js

jQuery圆形百分比进度条插件circleChart.js-精品资源网
jQuery圆形百分比进度条插件circleChart.js
此内容为免费资源,请登录后查看
0
免费资源

jQuery圆形百分比进度条插件circleChart.js

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>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容