Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
6dd66c62
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
6dd66c62
编写于
8月 16, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
!8159 【轻量级 PR】:【OpenHarmony开源贡献者计划2022】md文档缩进换行格式.
Merge pull request !8159 from FadeAgain/N/A
上级
b438b193
3f57ae3c
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
20 addition
and
13 deletion
+20
-13
zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md
...on-dev/reference/arkui-ts/ts-interpolation-calculation.md
+3
-1
zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md
...cation-dev/reference/arkui-ts/ts-matrix-transformation.md
+7
-1
zh-cn/application-dev/reference/arkui-ts/ts-media-components-video.md
...ation-dev/reference/arkui-ts/ts-media-components-video.md
+4
-3
zh-cn/application-dev/reference/arkui-ts/ts-methods-action-sheet.md
...ication-dev/reference/arkui-ts/ts-methods-action-sheet.md
+3
-5
zh-cn/application-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
...ion-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
+3
-3
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md
浏览文件 @
6dd66c62
...
...
@@ -8,7 +8,7 @@
## 导入模块
```
j
s
```
t
s
import
Curves
from
'
@ohos.curves
'
```
...
...
@@ -256,6 +256,7 @@ import Curves from '@ohos.curves'
struct
ImageComponent
{
@
State
widthSize
:
number
=
200
@
State
heightSize
:
number
=
200
build
()
{
Column
()
{
Text
()
...
...
@@ -273,4 +274,5 @@ struct ImageComponent {
}
}
```
![
zh-cn_image_0000001174104410
](
figures/zh-cn_image_0000001174104410.gif
)
zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md
浏览文件 @
6dd66c62
...
...
@@ -8,7 +8,7 @@
## 导入模块
```
```
ts
import
matrix4
from
'
@ohos.matrix4
'
```
...
...
@@ -114,6 +114,7 @@ Matrix的拷贝函数,可以拷贝一份当前的矩阵对象。
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
translate
({
x
:
100
})
private
matrix2
=
this
.
matrix1
.
copy
().
scale
({
x
:
2
})
build
()
{
Column
()
{
Image
(
$r
(
"
app.media.bg1
"
))
...
...
@@ -163,6 +164,7 @@ Matrix的叠加函数,可以将两个矩阵的效果叠加起来生成一个
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
translate
({
x
:
200
}).
copy
()
private
matrix2
=
Matrix4
.
identity
().
scale
({
x
:
2
}).
copy
()
build
()
{
Column
()
{
// 先平移x轴100px,再缩放两倍x轴
...
...
@@ -229,6 +231,7 @@ Matrix的平移函数,可以为当前矩阵增加x轴/Y轴/Z轴平移效果。
@
Component
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
translate
({
x
:
100
,
y
:
200
,
z
:
30
})
build
()
{
Column
()
{
Image
(
$r
(
"
app.media.bg1
"
)).
transform
(
this
.
matrix1
)
...
...
@@ -273,6 +276,7 @@ Matrix的缩放函数,可以为当前矩阵增加x轴/Y轴/Z轴缩放效果。
@
Component
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
scale
({
x
:
2
,
y
:
3
,
z
:
4
,
centerX
:
50
,
centerY
:
50
})
build
()
{
Column
()
{
Image
(
$r
(
"
app.media.bg1
"
)).
transform
(
this
.
matrix1
)
...
...
@@ -318,6 +322,7 @@ Matrix的旋转函数,可以为当前矩阵增加x轴/Y轴/Z轴旋转效果。
@
Component
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
rotate
({
x
:
1
,
y
:
1
,
z
:
2
,
angle
:
30
})
build
()
{
Column
()
{
Image
(
$r
(
"
app.media.bg1
"
)).
transform
(
this
.
matrix1
)
...
...
@@ -360,6 +365,7 @@ Matrix的坐标点转换函数,可以将当前的变换效果作用到一个
@
Component
struct
Test
{
private
matrix1
=
Matrix4
.
identity
().
transformPoint
([
100
,
10
])
build
()
{
Column
()
{
Button
(
"
get Point
"
)
...
...
zh-cn/application-dev/reference/arkui-ts/ts-media-components-video.md
浏览文件 @
6dd66c62
# Video
用于播放单个视频并控制其播放状态的组件。
用于播放单个视频并控制其播放状态的组件。
> **说明:**
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
...
...
@@ -9,7 +9,7 @@
使用网络视频时,需要在config或者module.json对应的"abilities"中添加网络使用权限ohos.permission.INTERNET。
```
```
js
"
abilities
"
:[
{
...
...
...
@@ -80,7 +80,7 @@ Video(value: VideoOptions)
### 导入对象
```
```
ts
controller
:
VideoController
=
new
VideoController
();
```
...
...
@@ -166,6 +166,7 @@ struct VideoCreateComponent {
@
State
autoPlays
:
boolean
=
false
;
@
State
controlsss
:
boolean
=
true
;
controller
:
VideoController
=
new
VideoController
();
build
()
{
Column
()
{
Video
({
...
...
zh-cn/application-dev/reference/arkui-ts/ts-methods-action-sheet.md
浏览文件 @
6dd66c62
# 列表选择弹窗
列表弹窗。
> **说明:**
> 从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
列表弹窗。
## 权限
无
...
...
@@ -47,6 +46,7 @@ show(options: { paramObject1})
@
Entry
@
Component
struct
ActionSheetExample
{
build
()
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
Center
})
{
Button
(
'
Click to Show ActionSheet
'
)
...
...
@@ -88,6 +88,4 @@ struct ActionSheetExample {
}
```
![
zh-cn_image_0000001241668363
](
figures/zh-cn_image_0000001241668363.gif
)
zh-cn/application-dev/reference/arkui-ts/ts-methods-alert-dialog-box.md
浏览文件 @
6dd66c62
# 警告弹窗
显示警告弹窗组件,可设置文本内容与响应回调。
> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
显示警告弹窗组件,可设置文本内容与响应回调。
## 属性
| 名称 | 参数类型 | 默认值 | 参数描述 |
...
...
@@ -46,6 +45,7 @@
@
Entry
@
Component
struct
AlertDialogExample
{
build
()
{
Column
({
space
:
5
})
{
Button
(
'
one button dialog
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录