hemy-progress
v1.5.0
Published
基于svg开发的进度条组件,svg progress for js
Downloads
9
Readme
文档
安装
通过 npm
npm install hemy-progress
基本使用
<div id="progress"></div>
import hemyProgress from 'hemy-pregress';
type:String 和 percentage:Number 必填 type 支持以下值
- line 线条
- circle 环形
- rect 矩形
- ellipse 椭圆
- path 自定义图形,d 值必填
new hemyProgress('#progress', {
type: 'circle',
percentage: 60,
});
自定义图形大小颜色配置
- strokeWidth,backStrokewidth 进度条和背景的宽度
- strokeColor,backStrokeColor 进度条和背景的颜色
- fillColor: 填充颜色
- textStyle: 显示文字的样式
- lineHeight: type=line 时,进度条高度
- radius: type=circle 时,circle 的半径大小
- borderRadius: type=line,rect 时的圆角大小
- 更多请查看API 使用介绍
new hemyProgress('#progress', {
type: 'circle',
percentage: 50,
strokeColor: 'red',
fillColor: '#D7BDE2',
backStrokeColor: '#F5EEF8 ',
radius: 80,
strokeWidth: 20,
backStrokeWidth: 20,
strokeLinecap: 'round',
textStyle: { fontSize: '20px', color: 'green' },
});
进度条颜色可传入一个颜色数组 如 strokeColor=['green','blue','yellow','orange','red'],在进度 0-20,20-40,40-60,60-80,80-100 时分别显示'green','blue','yellow','orange','red'
- 调用实例的setProgress方法,参数为一个 object,重新设置当前进度条样式
const progress = new hemyProgress('#progress', {
type: 'line',
percentage: 20,
strokeColor: ['green', 'blue', 'yellow', 'orange', 'red'],
borderRadius: 20,
});
progress.setProgress({ percentage: 80 });
虚线样式
- isDashed:Boolean 开启虚线
- dashedLength:Number 虚线长度
- dashedDistance:Number 虚线间隔
当 type 为 line 时,虚线需要设置合适虚线长度和虚线间隔,以便最后一个虚线刚好落在容器的最后面,例:虚线宽度和间隔都为 5px,则进度条(容器)总宽度可以设为 105px 115px 125px...
new hemyProgress('#progress', {
type: 'circle',
percentage: 50,
strokeWidth: 20,
backStrokeWidth: 20,
isDashed: true,
});
自定义图形
- type=path
- d 值必填
- pathLength 自定义图形路径的总长度,如果存在,路径将进行缩放,以便计算各点相当于此值的路径长度
new hemyProgress('#progress', {
type: 'path',
percentage: 50,
showText: false,
strokeWidth: 20,
backStrokeWidth: 20,
strokeLinecap: 'round',
strokeLinejoin: 'round',
strokeColor: 'blue',
pathLength: 800,
d: 'm20.74,153.83019l75.9583,-69.50019l0,34.75l110.08345,0l0,-34.75l75.95827,69.50019l-75.95827,69.49982l0,-34.74991l-110.08345,0l0,34.74991l-75.9583,-69.49982z',
});
自定义显示内容(插槽)
- 以属性 slot 值方式传入
new hemyProgress('#progress', {
type: 'circle',
percentage: 50,
strokeWidth: 20,
backStrokeWidth: 20,
radius: 60,
strokeColor: '#641E16',
strokeLinecap: 'round',
slot: `
<div style="text-align:center">
<img src='lufei.png' style="width:100%;height:100%;border-radius:100%"></img>
</div>
`,
});
API 使用介绍
实例方法
- setProgress(obj): 参数为一个对象{percentage:number,...},属性为以上API所列属性,调用此方法,可重新设置当前进度条样式(重置 type 除外)