codecamp

快应用 progress组件

概述

进度条

子组件

不支持

属性

支持  通用属性

名称 类型 默认值 必填 描述
percent <number> 0 当前进度(type为circular时不生效)
type horizontal | circular horizontal 进度条类型,不支持动态修改

样式

支持 通用样式

horizontal progress 底色为 #f0f0f0

circular progress 默认宽高为 32px,宽高设置不一致时,circular 图标为宽高的较小值

名称 类型 默认值 必填 描述
color <color> #33b4ff 或者 rgb(51, 180, 255) 进度条的颜色
stroke-width <length> 32px 进度条的宽度(type为circular时不生效)
layer-color 1070+
<color>
#f0f0f0 或者 rgb(240, 240, 240)
进度条的背景颜色(type 为 circular 时不生效)

事件

支持 通用事件

progress   示例代码

查看 示例代码


快应用 image组件
快应用 rating组件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

快应用 参考手册

快应用 安全

快应用 声音音频

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }