HTML5 SVG轻量级jQuery进度条插件

所属分类:UI-加载

 28074  325  查看评论 (0)
分享到微信朋友圈
X
HTML5 SVG轻量级jQuery进度条插件 ie兼容10

简要教程

这是一款基于HTML5 SVG的轻量级jQuery进度条插件。该进度条插件使用简单,它提供了一些基本的参数来控制进度条的外观和动画,是一款非常实用的进度条插件。

使用方法

使用该jQuery进度条插件需要引入jQuery和jquery.progress.js文件。

<script src="js/jquery.min.js"></script> 
<script src="js/jquery.progress.js"></script>

HTML结构

该jQuery进度条的HTML结构使用一个<svg>元素来制作。

<svg id="container"></svg>

初始化插件

在页面DOM元素加载完毕之后,可以通过下面的方法来初始化该进度条插件。

var progress = $("#container").Progress({
  percent: 20,
  width: 180,
  height: 40,
  fontSize: 16
});

配置参数

该进度条插件的可用配置参数如下:

var settings = {
  width: 90, // the width of bar
  height: 20, // the height of bar
  percent: 0, // the current percent
  backgroundColor: '#555', // the color of the background
  barColor: '#d9534f', // the color of the bar
  radius: 4, // the radius of the corner
  fontSize: 12, // the font size
  fontColor: '#fff', // the color of the number
  increaseSpeed: 1, // the increase length
  animate: true // whether to use animation
};
  • width:进度条的宽度。

  • height:进度条的高度。

  • percent:进度条的当前百分比。

  • backgroundColor:进度条的背景色。

  • barColor:进度条的颜色。

  • radius:进度条圆角的半径。

  • fontSize:字体大小。

  • fontColor:字体颜色。

  • increaseSpeed:进度条增加的长度。

  • animate:是否动画。


相关插件-加载

带刻度的进度条

html5 CSS3渐变进度条动画效果
  加载
 33743  312

JS简单进度条

再也不愁JS进度条了
  加载
 40546  332

js图片懒加载插件jxLazyload

最简便的jquery图片懒加载插件jxLazyload
  加载
 29928  189

jQuery局部加载

一个页面有多个接口请求时,接口返回的速度不一样,可以将所有接口返回后分开渲染,先返回的先渲染
  加载
 23128  307

讨论这个项目(0)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
取消回复