Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1344bf60
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看板
未验证
提交
1344bf60
编写于
8月 30, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 30, 2023
浏览文件
操作
浏览文件
下载
差异文件
!23197 apis下示例代码修改
Merge pull request !23197 from 椎名真昼/master
上级
2f2fb828
343370f4
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
29 addition
and
26 deletion
+29
-26
zh-cn/application-dev/reference/apis/js-apis-curve.md
zh-cn/application-dev/reference/apis/js-apis-curve.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-font.md
zh-cn/application-dev/reference/apis/js-apis-font.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
+2
-2
zh-cn/application-dev/reference/apis/js-apis-mediaquery.md
zh-cn/application-dev/reference/apis/js-apis-mediaquery.md
+12
-12
zh-cn/application-dev/reference/apis/js-apis-system-mediaquery.md
...plication-dev/reference/apis/js-apis-system-mediaquery.md
+9
-6
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-curve.md
浏览文件 @
1344bf60
...
...
@@ -279,9 +279,9 @@ customCurve(interpolate: (fraction: number) => number): ICurve
```
ts
import
Curves
from
'
@ohos.curves
'
let
interpolate
=
function
(
fraction
)
{
return
Math
.
sqrt
(
fraction
)
}
let
interpolate
=
(
fraction
:
number
):
number
=>
{
return
Math
.
sqrt
(
fraction
)
}
let
curve
=
Curves
.
customCurve
(
interpolate
)
// 创建一个用户自定义插值曲线
```
...
...
zh-cn/application-dev/reference/apis/js-apis-font.md
浏览文件 @
1344bf60
...
...
@@ -104,7 +104,7 @@ import font from '@ohos.font';
@
Entry
@
Component
struct
FontExample
{
fontList
:
Array
<
string
>
;
fontList
:
Array
<
string
>
=
new
Array
<
string
>
()
;
build
()
{
Column
()
{
Button
(
"
getSystemFontList
"
)
...
...
@@ -164,8 +164,8 @@ import font from '@ohos.font';
@
Entry
@
Component
struct
FontExample
{
fontList
:
Array
<
string
>
;
fontInfo
:
font
.
FontInfo
;
fontList
:
Array
<
string
>
=
new
Array
<
string
>
()
;
fontInfo
:
font
.
FontInfo
=
font
.
getFontByName
(
''
)
;
build
()
{
Column
()
{
Button
(
"
getFontByName
"
)
...
...
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
浏览文件 @
1344bf60
...
...
@@ -561,9 +561,9 @@ import matrix4 from '@ohos.matrix4'
@
Entry
@
Component
struct
Test
{
private
originPoint
:
[
number
,
number
]
=
[
50
,
50
]
private
originPoint
:
number
[
]
=
[
50
,
50
]
private
matrix_1
=
matrix4
.
identity
().
translate
({
x
:
150
,
y
:
-
50
})
private
transformPoint
=
this
.
matrix_1
.
transformPoint
(
this
.
originPoint
)
private
transformPoint
=
this
.
matrix_1
.
transformPoint
(
[
this
.
originPoint
[
0
],
this
.
originPoint
[
1
]]
)
private
matrix_2
=
matrix4
.
identity
().
translate
({
x
:
this
.
transformPoint
[
0
],
y
:
this
.
transformPoint
[
1
]
})
build
()
{
...
...
zh-cn/application-dev/reference/apis/js-apis-mediaquery.md
浏览文件 @
1344bf60
...
...
@@ -30,14 +30,14 @@ matchMediaSync(condition: string): MediaQueryListener
**参数:**
| 参数名
| 类型 | 必填 | 说明
|
| --------- | ------ | ---- | ---------------------------------------- |
| condition | string | 是
| 媒体事件的匹配条件,具体可参考
[
媒体查询语法规则
](
../../ui/arkts-layout-development-media-query.md#语法规则
)
。 |
| 参数名
| 类型 | 必填 | 说明
|
| --------- | ------ | ---- | ----------------------------------------
--------------------
|
| condition | string | 是 | 媒体事件的匹配条件,具体可参考
[
媒体查询语法规则
](
../../ui/arkts-layout-development-media-query.md#语法规则
)
。 |
**返回值:**
| 类型
| 说明
|
| ------------------ | ---------------------- |
| 类型
| 说明
|
| ------------------ | ----------------------
----------------------
|
| MediaQueryListener | 媒体事件监听句柄,用于注册和去注册监听回调。 |
**示例:**
...
...
@@ -71,10 +71,10 @@ on(type: 'change', callback: Callback<MediaQueryResult>): void
**参数:**
| 参数名
| 类型 | 必填 | 说明
|
| -------- | -------------------------------- | ---- | ---------------- |
| type | string | 是
| 必须填写字符串'change'。 |
| callback | Callback
<
MediaQueryResult
>
| 是
| 向媒体查询注册的回调
|
| 参数名
| 类型 | 必填 | 说明
|
| -------- | -------------------------------- | ---- | ----------------
--------
|
| type | string | 是 | 必须填写字符串'change'。 |
| callback | Callback
<
MediaQueryResult
>
| 是
| 向媒体查询注册的回调
|
**示例:**
...
...
@@ -102,7 +102,7 @@ off(type: 'change', callback?: Callback<MediaQueryResult>): void
import
mediaquery
from
'
@ohos.mediaquery
'
let
listener
=
mediaquery
.
matchMediaSync
(
'
(orientation: landscape)
'
);
//监听横屏事件
function
onPortrait
(
mediaQueryResult
)
{
function
onPortrait
(
mediaQueryResult
:
mediaquery
.
MediaQueryResult
)
{
if
(
mediaQueryResult
.
matches
)
{
// do something here
}
else
{
...
...
@@ -141,7 +141,7 @@ struct MediaQueryExample {
@
State
text
:
string
=
'
Portrait
'
listener
=
mediaquery
.
matchMediaSync
(
'
(orientation: landscape)
'
)
onPortrait
(
mediaQueryResult
)
{
onPortrait
(
mediaQueryResult
:
mediaquery
.
MediaQueryResult
)
{
if
(
mediaQueryResult
.
matches
)
{
this
.
color
=
'
#FFD700
'
this
.
text
=
'
Landscape
'
...
...
@@ -152,7 +152,7 @@ struct MediaQueryExample {
}
aboutToAppear
()
{
let
portraitFunc
=
this
.
onPortrait
.
bind
(
this
)
// bind current js instance
let
portraitFunc
=
(
mediaQueryResult
:
mediaquery
.
MediaQueryResult
):
void
=>
this
.
onPortrait
(
mediaQueryResult
)
// bind current js instance
this
.
listener
.
on
(
'
change
'
,
portraitFunc
)
}
...
...
zh-cn/application-dev/reference/apis/js-apis-system-mediaquery.md
浏览文件 @
1344bf60
...
...
@@ -98,7 +98,10 @@ addListener(callback: (event: MediaQueryEvent) => void): void
**示例:**
```
ts
function
maxWidthMatch
(
e
){
import
mediaquery
,
{
MediaQueryEvent
}
from
'
@system.mediaquery
'
;
let
mMediaQueryList
=
mediaquery
.
matchMedia
(
'
(max-width: 466)
'
);
function
maxWidthMatch
(
e
:
MediaQueryEvent
):
void
{
if
(
e
.
matches
){
// do something
}
...
...
@@ -124,13 +127,13 @@ removeListener(callback: (event: MediaQueryEvent) => void): void
**示例:**
```
ts
function
maxWidthMatch
(
e
){
import
mediaquery
,
{
MediaQueryEvent
}
from
'
@system.mediaquery
'
;
let
mMediaQueryList
=
mediaquery
.
matchMedia
(
'
(max-width: 466)
'
);
function
maxWidthMatch
(
e
:
MediaQueryEvent
):
void
{
if
(
e
.
matches
){
// do something
}
}
mMediaQueryList
.
removeListener
(
maxWidthMatch
);
```
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录