更新记录

1.0.2(2024-07-05) 下载此版本

修复圆环首尾有间隙的问题

1.0.1(2024-07-05) 下载此版本

修复文挡错误

1.0.0(2024-07-05) 下载此版本

新增

查看更多

平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 3.1.0 × × × ×
钉钉小程序 快手小程序 飞书小程序 京东小程序
× × × ×
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari
× × × × ×

hbxw-circular-progress组件

介绍

一个高度可定制的圆环进度条组件

使用示例


<template>
    <view class="test-container">
        <hbxw-circular-progress :value="progress" />
        <hbxw-circular-progress 
            :value="progress" 
            progressColor="green" 
            progressWidth="30rpx" 
            radius="200rpx"
        />
        <hbxw-circular-progress 
            :value="progress"
             @click="progressClick"
            :textStyle="{fontSize: '40px',fontWeight: 'bold',color: blue,backgroundColor: '#000'}"
        />
    </view>
</template>

<script>
    export default {
        data() {
            return {
                progress: 0
            }
        },
        mounted() {
            setInterval(() => {
                if (this.progress === 100) {
                    this.progress = 0
                }
                this.progress += 1;
            }, 100)
        },
        methods: {
            progressClick(val) {
                console.log('---- progressClick ----:', val)
            }
        }
    }
</script>

<style>
.test-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
</style>

API

Props

属性名 类型 默认值 必填 说明
value number 0 进度条值0-100
radius Number/String 150 进度条长宽等于radius * 2
progressWidth Number/String 20 进度条条形宽度
progressColor String #ff0000 进度条条形颜色
textStyle Object {} 进度条中间字体样式设置

Events

事件名 说明 返回值
click 进度条件点击触发事件 当前进度条值

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

插件不采集任何数据

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问