HTML5 SVG輕量級jQuery進度條插件

2018-11-14 18:49 更新

查看演示   website
下載地址:http://www.jq22.com/yanshi7635
ie兼容10
插件描述:這是一款基于HTML5 SVG的輕量級jQuery進度條插件。該進度條插件使用簡單,它提供了一些基本的參數(shù)來控制進度條的外觀和動畫,是一款非常實用的進度條插件。

簡要教程

這是一款基于HTML5 SVG的輕量級jQuery進度條插件。該進度條插件使用簡單,它提供了一些基本的參數(shù)來控制進度條的外觀和動畫,是一款非常實用的進度條插件。

使用方法

使用該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
});

配置參數(shù)

該進度條插件的可用配置參數(shù)如下:

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:是否動畫。



以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號