进度条 Progress
表示当前任务的进度。
使用
API用法示例
基本使用
<ti-progress></ti-progress>
<ti-progress value="80"></ti-progress>
<ti-circle-progress value="80"></ti-circle-progress>
设置缓冲进度
<ti-progress value="60" buffer="80"></ti-progress>
<ti-circle-progress value="60" buffer="80"></ti-circle-progress>
设置进度条宽度
<ti-progress value="50" stroke-width="20"></ti-progress>
<ti-circle-progress value="80" stroke-width="20"></ti-circle-progress>
修改展示进度值、颜色等
- index.html
- index.js
<ti-progress value="80" show-progress></ti-progress>
<ti-circle-progress value="80" show-progress></ti-circle-progress>
<ti-progress value="80" color="#2a6ae9"></ti-progress>
<ti-circle-progress value="80" color="#2a6ae9"></ti-circle-progress>
<ti-progress value="80" id="gradient-progress" />
var progress = document.querySelector("#gradient-progress");
progress["gradientColor"] = {
from: "#108ee9",
to: "#87d068"
};
ti-progress API
属性 Properties
名称 | 类型 | 是否必填 | 默认值 | 说明 | 备注 |
---|---|---|---|---|---|
size | number | 否 | 72 | 进度值大小 | - |
value | number | 否 | 0 | 进度值,取值范围 0-100 | - |
buffer | number | 否 | 0 | 缓冲值,取值范围 0-100 | - |
show-progress | boolean | 否 | false | 是否展示进度值,默认不展示 | - |
color | string | 否 | - | 进度条颜色,默认为主题色 | - |
stroke-width | number | 否 | 8 | 进度条宽度,默认为 8px | 此时单位为 rpx |
stroke-color | string | 否 | - | 进度条轨道颜色,默认为进度条值的 10% | - |
buffer-bg-color | string | 否 | - | 进度条缓冲轨道颜色,默认为进度条值的 30% | - |
gradient-color | GradientColor | string | 否 | - | 进度条颜色为渐变色,需要设置 from 和 to , 为字符串时,直接添加到 background-image 上 |
GradientColor
interface GradientColor {
from: string;
to: string;
}
可扩展样式名 External Class
类名 | 说明 | 备注 |
---|---|---|
ext-class | 扩展样式类名 | - |
text-class | 进度条文字扩展样式类名 | - |
CSS 变量 CSS Variables
变量 | 默认值 | 说明 | 备注 |
---|---|---|---|
--progress-margin-v | 8rpx | 垂直方向外间距 | - |
--progress-margin-h | 0 | 水平方向外间距 | - |
--progress-height | 8rpx | 进度条高度 | - |
--progress-radius | calc(var(--base-radius-size, 0px) + 12px) | 圆角大小 | - |
--progress-bar-color | rgb(@theme-r, @theme-g, @theme-b) | 轨道颜色 | - |
--progress-bar-radius | calc(var(--base-radius-size, 0px) + 12px) | 轨道圆角大小 | - |
--progress-pivot-margin-left | 8rpx | 左侧外间距 | - |
--progress-pivot-color | rgb(@theme-r, @theme-g, @theme-b) | 进度条内容颜色 | - |
ti-circle-progress API
属性 Properties
名称 | 类型 | 是否必填 | 默认值 | 说明 | 备注 |
---|---|---|---|---|---|
size | number | 否 | 72 | 进度值大小 | - |
value | number | 否 | 0 | 进度值,取值范围 0-100 | - |
buffer | number | 否 | 0 | 缓冲值,取值范围 0-100 | - |
show-progress | boolean | 否 | false | 是否展示进度值,默认不展示 | - |
color | string | 否 | - | 进度条颜色,默认为主题色 | - |
stroke-width | number | 否 | 8 | 进度条宽度,默认为 8px | - |
stroke-color | string | 否 | - | 进度条轨道颜色,默认为进度条值的 10% | - |
buffer-bg-color | string | 否 | - | 进度条缓冲轨道颜色,默认为进度条值的 30% | - |
font | string | 否 | - | canvas font 属性 | - |