Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d780334c
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看板
提交
d780334c
编写于
9月 23, 2022
作者:
H
hebingxue
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'hbx0923' of gitee.com:hebingxue/docs into hbx0923
上级
3d693fd6
015a39a1
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
45 addition
and
44 deletion
+45
-44
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-imageanimator.md
...v/reference/arkui-ts/ts-basic-components-imageanimator.md
+1
-2
zh-cn/application-dev/reference/arkui-ts/ts-methods-action-sheet.md
...ication-dev/reference/arkui-ts/ts-methods-action-sheet.md
+16
-16
zh-cn/application-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
...ion-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
...on-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
+26
-24
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-imageanimator.md
浏览文件 @
d780334c
...
...
@@ -8,7 +8,6 @@
## 子组件
无
...
...
@@ -29,7 +28,7 @@ ImageAnimator()
| reverse | boolean | 否 | 设置播放顺序。false表示从第1张图片播放到最后1张图片;
true表示从最后1张图片播放到第1张图片。
<br/>
默认值:false |
| fixedSize | boolean | 否 | 设置图片大小是否固定为组件大小。
true表示图片大小与组件大小一致,此时设置图片的width
、height
、top
和left属性是无效的。false表示每一张图片的width
、height
、top和left属性都要单独设置。
<br/>
默认值:true |
| preDecode | number | 否 | 是否启用预解码,默认值为0,即不启用预解码,如该值设为2,则播放当前页时会提前加载后面两张图片至缓存以提升性能。
<br/>
默认值:0 |
| fillMode |
[
FillMode
](
ts-appendix-enums.md#fillmode
)
| 否 | 设置动画开始前和结束后的状态,可选值参见FillMode说明。
<br/>
默认值:FillMode.
Forwards |
| fillMode |
[
FillMode
](
ts-appendix-enums.md#fillmode
)
| 否 | 设置动画开始前和结束后的状态,可选值参见FillMode说明。
<br/>
默认值:FillMode.Forwards |
| iterations | number | 否 | 默认播放一次,设置为-1时表示无限次播放。
<br/>
默认值:1 |
-
ImageFrameInfo属性说明
...
...
zh-cn/application-dev/reference/arkui-ts/ts-methods-action-sheet.md
浏览文件 @
d780334c
...
...
@@ -19,24 +19,24 @@ show(value: { title: string | Resource, message: string 
**参数:**
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述
|
| -------- | -------- | -------- | -------- |
-------- |
| title | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | - |
弹窗标题。 |
| message | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | - | 弹窗内容。
|
| autoCancel | boolean | 否 | true | 点击遮障层时,是否关闭弹窗。
|
| confirm | {
<br/>
value:
string
\|
[Resource](ts-types.md#resource),
<br/>
action:
()
=
>
void
<br/>
} | 否 | - | 确认按钮的文本内容和点击回调。
<br/>
value:按钮文本内容。
<br/>
action:
按钮选中时的回调。 |
| cancel | ()
=
>
void | 否 | - | 点击遮障层关闭dialog时的回调。
|
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md
)
| 否 | DialogAlignment.Default | 弹窗在竖直方向上的对齐方式。
|
| offset | {
<br/>
dx:
Length,
<br/>
dy:
Length
<br/>
} | 否 | {
<br/>
dx:
0,
<br/>
dy:
0
<br/>
} | 弹窗相对alignment所在位置的偏移量。
|
| sheets | Array
<
SheetInfo
>
| 是 | -
| 设置选项内容,每个选择项支持设置图片、文本和选中的回调。 |
| 参数名 | 参数类型 | 必填 | 参数描述
|
| ---------- | -------------------------- | ------- | ---------------------
-------- |
| title | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 |
弹窗标题。 |
| message | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 弹窗内容。
|
| autoCancel | boolean | 否 | 点击遮障层时,是否关闭弹窗。
<br>
默认值:true
|
| confirm | {
<br/>
value:
string
\|
[Resource](ts-types.md#resource),
<br/>
action:
()
=
>
void
<br/>
} | 否 | 确认按钮的文本内容和点击回调。
<br>
默认值:
<br/>
value:按钮文本内容。
<br/>
action:
按钮选中时的回调。 |
| cancel | ()
=
>
void | 否 | 点击遮障层关闭dialog时的回调。
|
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md#dialogalignment枚举说明
)
| 否 | 弹窗在竖直方向上的对齐方式。DialogAlignment.Default
|
| offset | {
<br/>
dx:
Length,
<br/>
dy:
Length
<br/>
} | 否 | 弹窗相对alignment所在位置的偏移量。{
<br/>
dx:
0,
<br/>
dy:
0
<br/>
}
|
| sheets | Array
<
SheetInfo
>
| 是
| 设置选项内容,每个选择项支持设置图片、文本和选中的回调。 |
## SheetInfo接口说明
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------ | ------------------------------------------------------------ | ---- | ----------------- |
| title | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 选项的文本内容。 |
| icon | string
\|
[
Resource
](
ts-types.md#resource
)
| 否 | 选项的图标,默认无图标显示。 |
| action | ()=
>
void
| 是 | 选项选中的回调。 |
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------ | ------------------------------------------------------------ | ---- | ----------------- |
| title | string
\|
[
Resource
](
ts-types.md#resource
)
| 是 | 选项的文本内容。 |
| icon | string
\|
[
Resource
](
ts-types.md#resource
)
| 否 | 选项的图标,默认无图标显示。 |
| action | ()=
>
void
| 是 | 选项选中的回调。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
浏览文件 @
d780334c
...
...
@@ -21,7 +21,7 @@
| autoCancel | boolean | 否 | 点击遮障层时,是否关闭弹窗。
<br>
默认值:true |
| confirm | {
<br/>
value:
string
\|
[Resource](ts-types.md#resource),
<br/>
fontColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
backgroundColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
action:
()
=
>
void
<br/>
} | 否 | 确认按钮的文本内容、文本色、按钮背景色和点击回调。 |
| cancel | ()
=
>
void | 否 | 点击遮障层关闭dialog时的回调。 |
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md#dialogalignment
)
| 否 | 弹窗在竖直方向上的对齐方式。
<br>
默认值:DialogAlignment.Default |
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md#dialogalignment
枚举说明
)
| 否 | 弹窗在竖直方向上的对齐方式。
<br>
默认值:DialogAlignment.Default |
| offset |
[
Offset
](
ts-types.md#offset
)
| 否 | 弹窗相对alignment所在位置的偏移量。 |
| gridCount | number | 否 | 弹窗容器宽度所占用栅格数。 |
...
...
@@ -34,7 +34,7 @@
| primaryButton | {
<br/>
value:
string
\|
[Resource](ts-types.md#resource),
<br/>
fontColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
backgroundColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
action:
()
=
>
void;
<br/>
} | 否 | 按钮的文本内容、文本色、按钮背景色和点击回调。 |
| secondaryButton | {
<br/>
value:
string
\|
[Resource](ts-types.md#resource),
<br/>
fontColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
backgroundColor?:
Color
\|
number
\|
string
\|
[Resource](ts-types.md#resource),
<br/>
action:
()
=
>
void;
<br/>
} | 否 | 按钮的文本内容、文本色、按钮背景色和点击回调。 |
| cancel | ()
=
>
void | 否 | 点击遮障层关闭dialog时的回调。 |
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md#dialogalignment
)
| 否 | 弹窗在竖直方向上的对齐方式。
<br>
默认值:DialogAlignment.Default |
| alignment |
[
DialogAlignment
](
ts-methods-custom-dialog-box.md#dialogalignment
枚举说明
)
| 否 | 弹窗在竖直方向上的对齐方式。
<br>
默认值:DialogAlignment.Default |
| offset |
[
Offset
](
ts-types.md#offset
)
| 否 | 弹窗相对alignment所在位置的偏移量。 |
| gridCount | number | 否 | 弹窗容器宽度所占用栅格数。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
浏览文件 @
d780334c
...
...
@@ -14,30 +14,32 @@
CustomDialogController(value:{builder: CustomDialog, cancel?: () =
>
void, autoCancel?: boolean, alignment?: DialogAlignment, offset?: Offset, customStyle?: boolean, gridCount?: number})
-
参数
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| ---------------------- | ---------------------------------------- | ---- | ----------------------- | ---------------------- |
| builder |
[
CustomDialog
](
../../ui/ts-component-based-customdialog.md
)
| 是 | - | 自定义弹窗内容构造器。 |
| cancel | ()
=
>
void | 否 | - | 点击遮障层退出时的回调。 |
| autoCancel | boolean | 否 | true | 是否允许点击遮障层退出。 |
| alignment | DialogAlignment | 否 | DialogAlignment.Default | 弹窗在竖直方向上的对齐方式。 |
| offset | {
<br/>
dx:
Length
\|
[Resource](ts-types.md#resource类型),
<br/>
dy:
Length
\|
[
Resource
](
ts-types.md#resource类型
)
<br/>
} | 否 | - | 弹窗相对alignment所在位置的偏移量。 |
| customStyle | boolean | 否 | false | 弹窗容器样式是否自定义。 |
| gridCount
<sup>
8+
</sup>
| number | 否 | - | 弹窗宽度占栅格宽度的个数。 |
-
DialogAlignment枚举说明
| 名称 | 描述 |
| ------------------------ | ------- |
| Top | 垂直顶部对齐。 |
| Center | 垂直居中对齐。 |
| Bottom | 垂直底部对齐。 |
| Default | 默认对齐。 |
| TopStart
<sup>
8+
</sup>
| 左上对齐。 |
| TopEnd
<sup>
8+
</sup>
| 右上对齐。 |
| CenterStart
<sup>
8+
</sup>
| 左中对齐。 |
| CenterEnd
<sup>
8+
</sup>
| 右中对齐。 |
| BottomStart
<sup>
8+
</sup>
| 左下对齐。 |
| BottomEnd
<sup>
8+
</sup>
| 右下对齐。 |
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ---------------------- | ---------------------------------------- | ------------------------- | ---------------------- |
| builder |
[
CustomDialog
](
../../ui/ts-component-based-customdialog.md
)
| 是 | 自定义弹窗内容构造器。 |
| cancel | ()
=
>
void | 否 | 点击遮障层退出时的回调。 |
| autoCancel | boolean | 否 | 是否允许点击遮障层退出。true |
| alignment | DialogAlignment | 否 | 弹窗在竖直方向上的对齐方式。
<br>
默认值:DialogAlignment.Default |
| offset | {
<br/>
dx:
Length
\|
[Resource](ts-types.md#resource类型),
<br/>
dy:
Length
\|
[
Resource
](
ts-types.md#resource类型
)
<br/>
} | 否 | 弹窗相对alignment所在位置的偏移量。 |
| customStyle | boolean | 否 | 弹窗容器样式是否自定义。
<br>
默认值:false |
| gridCount
<sup>
8+
</sup>
| number | 否 | 弹窗宽度占栅格宽度的个数。 |
## DialogAlignment枚举说明
| 名称 | 描述 |
| ------------------------ | ------- |
| Top | 垂直顶部对齐。 |
| Center | 垂直居中对齐。 |
| Bottom | 垂直底部对齐。 |
| Default | 默认对齐。 |
| TopStart
<sup>
8+
</sup>
| 左上对齐。 |
| TopEnd
<sup>
8+
</sup>
| 右上对齐。 |
| CenterStart
<sup>
8+
</sup>
| 左中对齐。 |
| CenterEnd
<sup>
8+
</sup>
| 右中对齐。 |
| BottomStart
<sup>
8+
</sup>
| 左下对齐。 |
| BottomEnd
<sup>
8+
</sup>
| 右下对齐。 |
## CustomDialogController
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录