Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
858f441b
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
858f441b
编写于
7月 28, 2022
作者:
G
gmy
提交者:
LiAn
7月 28, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed
19c412a8
from
https://gitee.com/HelloCrease/docs/pulls/7332
update docs Signed-off-by:
N
gmy
<
guanmingyue@h-partners.com
>
上级
e63484b9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
21 deletion
+31
-21
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md
...on-dev/reference/arkui-ts/ts-basic-components-progress.md
+5
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md
...tion-dev/reference/arkui-ts/ts-basic-components-slider.md
+16
-16
zh-cn/application-dev/reference/arkui-ts/ts-container-scroll.md
...application-dev/reference/arkui-ts/ts-container-scroll.md
+10
-4
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md
浏览文件 @
858f441b
...
...
@@ -88,7 +88,11 @@ struct ProgressExample {
Text
(
'
Capsule Progress
'
).
fontSize
(
9
).
fontColor
(
0xCCCCCC
).
width
(
'
90%
'
)
Row
({
space
:
40
})
{
Progress
({
value
:
10
,
type
:
ProgressType
.
Capsule
}).
width
(
100
).
height
(
50
)
Progress
({
value
:
20
,
total
:
150
,
type
:
ProgressType
.
Capsule
}).
color
(
Color
.
Grey
).
value
(
50
).
width
(
100
).
height
(
50
)
Progress
({
value
:
20
,
total
:
150
,
type
:
ProgressType
.
Capsule
})
.
color
(
Color
.
Grey
)
.
value
(
50
)
.
width
(
100
)
.
height
(
50
)
}
}.
width
(
'
100%
'
).
margin
({
top
:
30
})
}
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md
浏览文件 @
858f441b
...
...
@@ -33,39 +33,39 @@ Slider(value:{value?: number, min?: number, max?: number, step?: number, style?:
| reverse
<sup>
8+
</sup>
| boolean | 否 | false | 设置滑动条取值范围是否反向。 |
-
SliderStyle枚举说明
| 名称 | 描述 |
| 名称 | 描述 |
| -------- | -------- |
| OutSet | 滑块在滑轨上。 |
| InSet | 滑块在滑轨内。 |
| OutSet | 滑块在滑轨上。 |
| InSet | 滑块在滑轨内。 |
## 属性
不支持触摸热区设置。
| 名称 | 参数类型 | 默认值 | 描述 |
| 名称 | 参数类型 | 默认值 | 描述 |
| -------- | -------- | -------- | -------- |
| blockColor | Color | - | 设置滑块的颜色。 |
| trackColor | Color | - | 设置滑轨的背景颜色。 |
| selectedColor | Color | - | 设置滑轨的已滑动颜色。 |
| showSteps | boolean | false | 设置当前是否显示步长刻度值。 |
| showTips | boolean | false | 设置滑动时是否显示气泡提示百分比。 |
| blockColor | Color | - | 设置滑块的颜色。 |
| trackColor | Color | - | 设置滑轨的背景颜色。 |
| selectedColor | Color | - | 设置滑轨的已滑动颜色。 |
| showSteps | boolean | false | 设置当前是否显示步长刻度值。 |
| showTips | boolean | false | 设置滑动时是否显示气泡提示百分比。 |
## 事件
通用事件仅支持:OnAppear,OnDisAppear。
| 名称 | 功能描述 |
| 名称 | 功能描述 |
| -------- | -------- |
| onChange(callback:
(value:
number,
mode:
SliderChangeMode)
=
>
void) | Slider滑动时触发事件回调。
<br/>
value:当前进度值。
<br/>
mode:拖动状态。 |
| onChange(callback:
(value:
number,
mode:
SliderChangeMode)
=
>
void) | Slider滑动时触发事件回调。
<br/>
value:当前进度值。
<br/>
mode:拖动状态。 |
-
SliderChangeMode枚举说明
| 名称 |
描述 |
| -------- | -------- |
| Begin |
用户开始拖动滑块。 |
| Moving |
用户拖动滑块中。 |
| End |
用户结束拖动滑块。 |
| 名称 |
值 | 描述 |
| -------- | -------- |
-------- |
| Begin |
0 | 用户开始拖动滑块。 |
| Moving |
1 | 用户拖动滑块中。 |
| End |
2 | 用户结束拖动滑块。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-scroll.md
浏览文件 @
858f441b
...
...
@@ -173,14 +173,20 @@ struct ScrollExample {
Column
()
{
ForEach
(
this
.
arr
,
(
item
)
=>
{
Text
(
item
.
toString
())
.
width
(
'
90%
'
).
height
(
150
).
backgroundColor
(
0xFFFFFF
)
.
borderRadius
(
15
).
fontSize
(
16
).
textAlign
(
TextAlign
.
Center
)
.
width
(
'
90%
'
)
.
height
(
150
)
.
backgroundColor
(
0xFFFFFF
)
.
borderRadius
(
15
)
.
fontSize
(
16
)
.
textAlign
(
TextAlign
.
Center
)
.
margin
({
top
:
10
})
},
item
=>
item
)
}.
width
(
'
100%
'
)
}
.
scrollable
(
ScrollDirection
.
Vertical
).
scrollBar
(
BarState
.
On
)
.
scrollBarColor
(
Color
.
Gray
).
scrollBarWidth
(
30
)
.
scrollable
(
ScrollDirection
.
Vertical
)
.
scrollBar
(
BarState
.
On
)
.
scrollBarColor
(
Color
.
Gray
)
.
scrollBarWidth
(
30
)
.
onScroll
((
xOffset
:
number
,
yOffset
:
number
)
=>
{
console
.
info
(
xOffset
+
'
'
+
yOffset
)
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录