Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
91754e8d
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看板
提交
91754e8d
编写于
9月 13, 2022
作者:
H
HelloCrease
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update docs
Signed-off-by:
N
HelloCrease
<
lian15@huawei.com
>
上级
0584dcd2
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
27 addition
and
52 deletion
+27
-52
zh-cn/application-dev/reference/arkui-js/js-components-custom-event-parameter.md
...eference/arkui-js/js-components-custom-event-parameter.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
...ation-dev/reference/arkui-ts/ts-basic-components-image.md
+17
-27
zh-cn/application-dev/reference/arkui-ts/ts-media-components-video.md
...ation-dev/reference/arkui-ts/ts-media-components-video.md
+3
-13
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-enable.md
...-dev/reference/arkui-ts/ts-universal-attributes-enable.md
+6
-10
zh-cn/application-dev/reference/js-service-widget-ui/Readme-CN.md
...plication-dev/reference/js-service-widget-ui/Readme-CN.md
+0
-1
未找到文件。
zh-cn/application-dev/reference/arkui-js/js-components-custom-event-parameter.md
浏览文件 @
91754e8d
...
...
@@ -7,7 +7,7 @@
<!-- comp.hml -->
<div
class=
"item"
>
<text
class=
"text-style"
onclick=
"childClicked"
>
点击这里查看隐藏文本
</text>
<text
class=
"text-style"
if=
"{{
showObj
}}"
>
hello world
</text>
<text
class=
"text-style"
if=
"{{
showObj
}}"
>
hello world
</text>
</div>
```
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
浏览文件 @
91754e8d
...
...
@@ -6,19 +6,9 @@
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
##
权限说明
##
需要权限
使用网络图片时,需要在config.json(FA模型)或者module.json5(Stage模型)对应的"abilities"中添加网络使用权限ohos.permission.INTERNET。
```
"abilities": [
{
...
"permissions": ["ohos.permission.INTERNET"],
...
}
]
```
使用网络图片时,需要申请权限ohos.permission.INTERNET。具体申请方式请参考
[
权限申请声明
](
../../security/accesstoken-guidelines.md
)
。
## 子组件
...
...
@@ -42,21 +32,21 @@ Image(src: string | PixelMap | Resource)
除支持
[
通用属性
](
ts-universal-attributes-size.md
)
外,还支持以下属性:
| 名称
| 参数类型 | 默认值 | 描述
|
| ---------------------
| ------------------------------------------------------- | ------------------------ | --------------------
---------------------------------------- |
| alt
| string
\|
[
Resource
](
../../ui/ts-types.md#resource类型
)
| - | 加载时显示的占位图,支持本地图片和网络图片。
|
| objectFit
|
[
ImageFit
](
ts-appendix-enums.md#imagefit
)
| ImageFit.Cover | 设置图片的缩放类型。
|
| objectRepeat
|
[
ImageRepeat
](
ts-appendix-enums.md#imagerepeat
)
| NoRepeat | 设置图片的重复样式。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。 |
| interpolation
|
[
ImageInterpolation
](
#imageinterpolation
)
| ImageInterpolation.None | 设置图片的插值效果,即减轻低清晰度图片在放大显示的时候出现的锯齿问题,仅针对图片放大插值。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。
<br/>
>
-
PixelMap资源不支持该属性。 |
| renderMode
|
[
ImageRenderMode
](
#imagerendermode
)
| ImageRenderMode.Original | 设置图片渲染的模式。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。 |
| sourceSize | {
<br/>
width:
number,
<br/>
height:
number
<br/>
} | - | 设置图片裁剪尺寸,将原始图片解码成pixelMap,指定尺寸的图片,单位为px。
<br/>
>
**说明:**
<br/>
>
PixelMap资源不支持该属性。 |
| matchTextDirection
| boolean | false | 设置图片是否跟随系统语言方向,在RTL语言环境下显示镜像翻转显示效果。
|
| fitOriginalSize
| boolean | true | 图片组件尺寸未设置时,其显示尺寸是否跟随图源尺寸。
|
| fillColor
|
[
ResourceColor
](
../../ui/ts-types.md#resourcecolor8
)
| - | 仅对svg图源生效,设置后会替换svg图片的fill颜色。
|
| autoResize
| boolean | true | 是否需要在图片解码过程中对图源做resize操作,该操作会根据显示区域的尺寸决定用于绘制的图源尺寸,有利于减少内存占用。
|
| syncLoad
<sup>
8+
</sup>
| boolean | false | 设置是否同步加载图片,默认是异步加载。同步加载时阻塞UI线程,不会显示占位图。 |
| copyOption
<sup>
9+
</sup>
|
[
CopyOptions
](
ts-appendix-enums.md#copyoptions9
)
| CopyOptions.None
| 设置图片是否可复制(SVG图片不支持复制)。
<br/>
当设置copyOption为非CopyOptions.None时,支持快捷组合键'CTRL+C'进行复制。 |
| colorFilter
<sup>
9+
</sup>
|
[
ColorFilter
](
../../ui/ts-types.md#colorfilter9
)
| -
| 给图像设置颜色滤镜效果。
|
| 名称
| 参数类型 | 默认值 | 描述
|
| ---------------------
--- | ---------------------------------------- | ------------------------ |
---------------------------------------- |
| alt
| string
\|
[
Resource
](
../../ui/ts-types.md#resource类型
)
| - | 加载时显示的占位图,支持本地图片和网络图片。
|
| objectFit
|
[
ImageFit
](
ts-appendix-enums.md#imagefit
)
| ImageFit.Cover | 设置图片的缩放类型。
|
| objectRepeat
|
[
ImageRepeat
](
ts-appendix-enums.md#imagerepeat
)
| NoRepeat | 设置图片的重复样式。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。 |
| interpolation
|
[
ImageInterpolation
](
#imageinterpolation
)
| ImageInterpolation.None | 设置图片的插值效果,即减轻低清晰度图片在放大显示的时候出现的锯齿问题,仅针对图片放大插值。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。
<br/>
>
-
PixelMap资源不支持该属性。 |
| renderMode
|
[
ImageRenderMode
](
#imagerendermode
)
| ImageRenderMode.Original | 设置图片渲染的模式。
<br/>
>
**说明:**
<br/>
>
-
svg类型图源不支持该属性。 |
| sourceSize
| {
<br/>
width:
number,
<br/>
height:
number
<br/>
} | - | 设置图片裁剪尺寸,将原始图片解码成pixelMap,指定尺寸的图片,单位为px。
<br/>
>
**说明:**
<br/>
>
PixelMap资源不支持该属性。 |
| matchTextDirection
| boolean | false | 设置图片是否跟随系统语言方向,在RTL语言环境下显示镜像翻转显示效果。
|
| fitOriginalSize
| boolean | true | 图片组件尺寸未设置时,其显示尺寸是否跟随图源尺寸。
|
| fillColor
|
[
ResourceColor
](
../../ui/ts-types.md#resourcecolor8
)
| - | 仅对svg图源生效,设置后会替换svg图片的fill颜色。
|
| autoResize
| boolean | true | 是否需要在图片解码过程中对图源做resize操作,该操作会根据显示区域的尺寸决定用于绘制的图源尺寸,有利于减少内存占用。
|
| syncLoad
<sup>
8+
</sup>
| boolean | false | 设置是否同步加载图片,默认是异步加载。同步加载时阻塞UI线程,不会显示占位图。 |
| copyOption
<sup>
9+
</sup>
|
[
CopyOptions
](
ts-appendix-enums.md#copyoptions9
)
| CopyOptions.None
| 设置图片是否可复制(SVG图片不支持复制)。
<br/>
当设置copyOption为非CopyOptions.None时,支持快捷组合键'CTRL+C'进行复制。 |
| colorFilter
<sup>
9+
</sup>
|
[
ColorFilter
](
../../ui/ts-types.md#colorfilter9
)
| -
| 给图像设置颜色滤镜效果。
|
> **说明:**
> 使用快捷组合键对Image组件复制的前提是,该组件必须处于获焦状态。将Image组件的属性focusable设置为true,即可使用TAB键将焦点切换到Image组件上,再将Image组件的focusOnTouch属性设置为true,即可实现点击获焦。
...
...
zh-cn/application-dev/reference/arkui-ts/ts-media-components-video.md
浏览文件 @
91754e8d
...
...
@@ -7,17 +7,7 @@
## 权限列表
使用网络视频时,需要在config或者module.json对应的"abilities"中添加网络使用权限ohos.permission.INTERNET。
```
js
"
abilities
"
:[
{
...
"
permissions
"
:
[
"
ohos.permission.INTERNET
"
],
...
}
]
```
使用网络视频时,需要申请权限ohos.permission.INTERNET。具体申请方式请参考
[
权限申请声明
](
../../security/accesstoken-guidelines.md
)
。
## 子组件
...
...
@@ -121,8 +111,8 @@ requestFullscreen(value: boolean)
请求全屏播放。
-
参数
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| ----- | ------ | ---- | ----- | ------- |
| 参数名 | 参数类型
| 必填 | 默认值 | 参数描述 |
| ----- | ------
-
| ---- | ----- | ------- |
| value | boolean | 是 | false | 是否全屏播放。 |
### exitFullscreen
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-enable.md
浏览文件 @
91754e8d
# 禁用控制
可交互状态下组件响应点击事件
。
组件是否可交互,可交互状态下响应
[
通用事件
](
ts-universal-events-click.md
)
。
> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
## 权限列表
无
>
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
## 属性
| 名称
| 参数类型 | 默认值 | 描述
|
| -------
- | -------- | -------- |
-------- |
| enabled | boolean |
true | 值为true表示组件可用,可响应点击等操作;值为false时,不响应点击等操作。
|
| 名称
| 参数类型 | 描述
|
| -------
| ------- | --------------------------------
-------- |
| enabled | boolean |
值为true表示组件可交互,响应点击等操作。
<br>
值为false表示组件不可交互,不响应点击等操作。
<br>
默认值:true
|
## 示例
...
...
zh-cn/application-dev/reference/js-service-widget-ui/Readme-CN.md
浏览文件 @
91754e8d
...
...
@@ -2,7 +2,6 @@
-
JS服务卡片UI框架说明
-
[
文件组织
](
js-service-widget-file.md
)
-
[
配置文件
](
js-service-widget-config-file.md
)
-
语法
-
[
HML语法参考
](
js-service-widget-syntax-hml.md
)
-
[
CSS语法参考
](
js-service-widget-syntax-css.md
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录