注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

jQuery网页进度条插件代码

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2023-06-22
jQuery网页进度条插件代码
多款彩色样式可设置百分比,颜色,高度,长度,圆形形状等属性的jQuery网页进度条插件代码。


js代码

<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="js/jquery.lineProgressbar.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
	$('#progressbar1').LineProgressbar({
		percentage: 50
	});
	$('#progressbar2').LineProgressbar({
		percentage: 25,
		fillBackgroundColor: '#1abc9c'
	});
	$('#progressbar3').LineProgressbar({
	  percentage: 61,
	  fillBackgroundColor: '#e67e22',
	  height: '35px'
	});
	$('#progressbar4').LineProgressbar({
	  percentage: 78,
	  fillBackgroundColor: '#f1c40f',
	  height: '65px',
	  radius: '50px'
	});
})
</script>