Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1015f1f9
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,发现更多精彩内容 >>
未验证
提交
1015f1f9
编写于
2月 09, 2023
作者:
O
openharmony_ci
提交者:
Gitee
2月 09, 2023
浏览文件
操作
浏览文件
下载
差异文件
!14409 docs同步OHOS
Merge pull request !14409 from LiAn/master
上级
15daf774
8220bf01
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
22 addition
and
21 deletion
+22
-21
zh-cn/application-dev/reference/arkui-js/js-components-common-mediaquery.md
...dev/reference/arkui-js/js-components-common-mediaquery.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md
...rence/arkui-ts/ts-transition-animation-shared-elements.md
+2
-1
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component.md
...on-dev/reference/native-apis/_o_h___native_x_component.md
+12
-12
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___mouse_event.md
...ce/native-apis/_o_h___native_x_component___mouse_event.md
+2
-2
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___touch_event.md
...ce/native-apis/_o_h___native_x_component___touch_event.md
+2
-2
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___touch_point.md
...ce/native-apis/_o_h___native_x_component___touch_point.md
+2
-2
未找到文件。
zh-cn/application-dev/reference/arkui-js/js-components-common-mediaquery.md
浏览文件 @
1015f1f9
...
...
@@ -109,9 +109,9 @@
| dark-mode
<sup>
6+
</sup>
| 系统为深色模式时为true,否则为false。 |
## 示例代码
##
通用媒体特征
示例代码
-
通用媒体特征示例代码(多个.container中的所写的属性个数以及类型需要相同,若不相同会导致显示异常):
多个.container中的所写的属性个数以及类型需要相同,若不相同会导致显示异常。
```
html
<!-- xxx.hml -->
...
...
zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md
浏览文件 @
1015f1f9
...
...
@@ -47,7 +47,8 @@ struct SharedTransitionExample {
struct
pageBExample
{
build
()
{
Stack
()
{
Image
(
$r
(
'
app.media.ic_health_heart
'
)).
width
(
150
).
height
(
150
).
sharedTransition
(
'
sharedImage
'
)
Image
(
$r
(
'
app.media.ic_health_heart
'
)).
width
(
150
).
height
(
150
)
.
sharedTransition
(
'
sharedImage
'
,
{
duration
:
800
,
curve
:
Curve
.
Linear
,
delay
:
100
})
}.
width
(
'
100%
'
).
height
(
'
100%
'
)
}
}
...
...
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component.md
浏览文件 @
1015f1f9
...
...
@@ -69,8 +69,8 @@
|
[
OH_XCOMPONENT_ID_LEN_MAX
](
#oh_xcomponent_id_len_max
)
= 128 | ArkUI XComponent的id最大长度。 |
|
[
OH_MAX_TOUCH_POINTS_NUMBER
](
#oh_max_touch_points_number
)
= 10 | 触摸事件中的可识别的触摸点个数最大值。 |
|
[
OH_NativeXComponent_TouchPoint::id
](
#id-12
)
= 0 | 手指的唯一标识符。 |
|
[
OH_NativeXComponent_TouchPoint::screenX
](
#screenx-13
)
= 0.0 | 触摸点相对于
屏幕左边缘
的x坐标。 |
|
[
OH_NativeXComponent_TouchPoint::screenY
](
#screeny-13
)
= 0.0 | 触摸点相对于
屏幕上边缘
的y坐标。 |
|
[
OH_NativeXComponent_TouchPoint::screenX
](
#screenx-13
)
= 0.0 | 触摸点相对于
应用窗口左上角
的x坐标。 |
|
[
OH_NativeXComponent_TouchPoint::screenY
](
#screeny-13
)
= 0.0 | 触摸点相对于
应用窗口左上角
的y坐标。 |
|
[
OH_NativeXComponent_TouchPoint::x
](
#x-13
)
= 0.0 | 触摸点相对于XComponent组件左边缘的x坐标。 |
|
[
OH_NativeXComponent_TouchPoint::y
](
#y-13
)
= 0.0 | 触摸点相对于XComponent组件上边缘的y坐标。 |
|
[
OH_NativeXComponent_TouchPoint::type
](
#type-12
)
= OH_NativeXComponent_TouchEventType::OH_NATIVEXCOMPONENT_UNKNOWN | 触摸事件的触摸类型。 |
...
...
@@ -79,8 +79,8 @@
|
[
OH_NativeXComponent_TouchPoint::timeStamp
](
#timestamp-12
)
= 0 | 当前触摸事件的时间戳。 |
|
[
OH_NativeXComponent_TouchPoint::isPressed
](
#ispressed
)
= false | 当前点是否被按下。 |
|
[
OH_NativeXComponent_TouchEvent::id
](
#id-22
)
= 0 | 手指的唯一标识符。 |
|
[
OH_NativeXComponent_TouchEvent::screenX
](
#screenx-23
)
= 0.0 | 触摸点相对于
屏幕左边缘
的x坐标。 |
|
[
OH_NativeXComponent_TouchEvent::screenY
](
#screeny-23
)
= 0.0 | 触摸点相对于
屏幕上边缘
的y坐标。 |
|
[
OH_NativeXComponent_TouchEvent::screenX
](
#screenx-23
)
= 0.0 | 触摸点相对于
应用窗口左上角
的x坐标。 |
|
[
OH_NativeXComponent_TouchEvent::screenY
](
#screeny-23
)
= 0.0 | 触摸点相对于
应用窗口左上角
的y坐标。 |
|
[
OH_NativeXComponent_TouchEvent::x
](
#x-23
)
= 0.0 | 触摸点相对于XComponent组件左边缘的x坐标。 |
|
[
OH_NativeXComponent_TouchEvent::y
](
#y-23
)
= 0.0 | 触摸点相对于XComponent组件上边缘的y坐标。 |
|
[
OH_NativeXComponent_TouchEvent::type
](
#type-22
)
= OH_NativeXComponent_TouchEventType::OH_NATIVEXCOMPONENT_UNKNOWN | 触摸事件的触摸类型。 |
...
...
@@ -92,8 +92,8 @@
|
[
OH_NativeXComponent_TouchEvent::numPoints
](
#numpoints
)
= 0 | 当前接触点的数量。 |
|
[
OH_NativeXComponent_MouseEvent::x
](
#x-33
)
= 0.0 | 点击触点相对于当前组件左上角的x轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::y
](
#y-33
)
= 0.0 | 点击触点相对于当前组件左上角的y轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::screenX
](
#screenx-33
)
= 0.0 | 点击触点相对于
屏幕
左上角的x轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::screenY
](
#screeny-33
)
= 0.0 | 点击触点相对于
屏幕
左上角的y轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::screenX
](
#screenx-33
)
= 0.0 | 点击触点相对于
应用窗口
左上角的x轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::screenY
](
#screeny-33
)
= 0.0 | 点击触点相对于
应用窗口
左上角的y轴坐标。 |
|
[
OH_NativeXComponent_MouseEvent::timestamp
](
#timestamp
)
= 0 | 当前鼠标事件的时间戳。 |
|
[
OH_NativeXComponent_MouseEvent::action
](
#action
)
=
[
OH_NativeXComponent_MouseEventAction::OH_NATIVEXCOMPONENT_MOUSE_NONE
](
#oh_nativexcomponent_mouseeventaction
)
| 当前鼠标事件动作。 |
|
[
OH_NativeXComponent_MouseEvent::button
](
#button
)
=
[
OH_NativeXComponent_MouseEventButton::OH_NATIVEXCOMPONENT_NONE_BUTTON
](
#oh_nativexcomponent_mouseeventbutton
)
| 鼠标事件按键。 |
...
...
@@ -739,7 +739,7 @@ float OH_NativeXComponent_TouchPoint::screenX = 0.0
**描述:**
触摸点相对于
屏幕左边缘
的x坐标。
触摸点相对于
应用窗口左上角
的x坐标。
**起始版本:**
...
...
@@ -755,7 +755,7 @@ float OH_NativeXComponent_TouchEvent::screenX = 0.0
**描述:**
触摸点相对于
屏幕左边缘
的x坐标。
触摸点相对于
应用窗口左上角
的x坐标。
**起始版本:**
...
...
@@ -771,7 +771,7 @@ float OH_NativeXComponent_MouseEvent::screenX
**描述:**
点击触点相对于
屏幕
左上角的x轴坐标。
点击触点相对于
应用窗口
左上角的x轴坐标。
**起始版本:**
...
...
@@ -787,7 +787,7 @@ float OH_NativeXComponent_TouchPoint::screenY = 0.0
**描述:**
触摸点相对于
屏幕上边缘
的y坐标。
触摸点相对于
应用窗口左上角
的y坐标。
**起始版本:**
...
...
@@ -803,7 +803,7 @@ float OH_NativeXComponent_TouchEvent::screenY = 0.0
**描述:**
触摸点相对于
屏幕上边缘
的y坐标。
触摸点相对于
应用窗口左上角
的y坐标。
**起始版本:**
...
...
@@ -819,7 +819,7 @@ float OH_NativeXComponent_MouseEvent::screenY
**描述:**
点击触点相对于
屏幕
左上角的y轴坐标。
点击触点相对于
应用窗口
左上角的y轴坐标。
**起始版本:**
...
...
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___mouse_event.md
浏览文件 @
1015f1f9
...
...
@@ -23,8 +23,8 @@
| -------- | -------- |
|
[
x = 0.0
](
_o_h___native_x_component.md#x-33
)
| 点击触点相对于当前组件左上角的x轴坐标。 |
|
[
y = 0.0
](
_o_h___native_x_component.md#y-33
)
| 点击触点相对于当前组件左上角的y轴坐标。 |
|
[
screenX = 0.0
](
_o_h___native_x_component.md#screenx-33
)
| 点击触点相对于
屏幕
左上角的x轴坐标。 |
|
[
screenY = 0.0
](
_o_h___native_x_component.md#screeny-33
)
| 点击触点相对于
屏幕
左上角的y轴坐标。 |
|
[
screenX = 0.0
](
_o_h___native_x_component.md#screenx-33
)
| 点击触点相对于
应用窗口
左上角的x轴坐标。 |
|
[
screenY = 0.0
](
_o_h___native_x_component.md#screeny-33
)
| 点击触点相对于
应用窗口
左上角的y轴坐标。 |
|
[
timestamp = 0
](
_o_h___native_x_component.md#timestamp
)
| 当前鼠标事件的时间戳。 |
|
[
action = OH_NativeXComponent_MouseEventAction::OH_NATIVEXCOMPONENT_MOUSE_NONE
](
_o_h___native_x_component.md#action
)
| 当前鼠标事件动作。 |
|
[
button = OH_NativeXComponent_MouseEventButton::OH_NATIVEXCOMPONENT_NONE_BUTTON
](
_o_h___native_x_component.md#button
)
| 鼠标事件按键。 |
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___touch_event.md
浏览文件 @
1015f1f9
...
...
@@ -22,8 +22,8 @@
| 成员变量名称 | 描述 |
| -------- | -------- |
|
[
id
](
_o_h___native_x_component.md#id-22
)
= 0 | 手指的唯一标识符。 |
|
[
screenX
](
_o_h___native_x_component.md#screenx-23
)
= 0.0 | 触摸点相对于
屏幕左边缘
的x坐标。 |
|
[
screenY
](
_o_h___native_x_component.md#screeny-23
)
= 0.0 | 触摸点相对于
屏幕上边缘
的y坐标。 |
|
[
screenX
](
_o_h___native_x_component.md#screenx-23
)
= 0.0 | 触摸点相对于
应用窗口左上角
的x坐标。 |
|
[
screenY
](
_o_h___native_x_component.md#screeny-23
)
= 0.0 | 触摸点相对于
应用窗口左上角
的y坐标。 |
|
[
x
](
_o_h___native_x_component.md#x-23
)
= 0.0 | 触摸点相对于XComponent组件左边缘的x坐标。 |
|
[
y
](
_o_h___native_x_component.md#y-23
)
= 0.0 | 触摸点相对于XComponent组件上边缘的y坐标。 |
|
[
type
](
_o_h___native_x_component.md#type-22
)
= OH_NativeXComponent_TouchEventType::OH_NATIVEXCOMPONENT_UNKNOWN | 触摸事件的触摸类型。 |
...
...
zh-cn/application-dev/reference/native-apis/_o_h___native_x_component___touch_point.md
浏览文件 @
1015f1f9
...
...
@@ -22,8 +22,8 @@
| 成员变量名称 | 描述 |
| -------- | -------- |
|
[
id
](
_o_h___native_x_component.md#id-12
)
= 0 | 手指的唯一标识符。 |
|
[
screenX
](
_o_h___native_x_component.md#screenx-13
)
= 0.0 | 触摸点相对于
屏幕左边缘
的x坐标。 |
|
[
screenY
](
_o_h___native_x_component.md#screeny-13
)
= 0.0 | 触摸点相对于
屏幕上边缘
的y坐标。 |
|
[
screenX
](
_o_h___native_x_component.md#screenx-13
)
= 0.0 | 触摸点相对于
应用窗口左上角
的x坐标。 |
|
[
screenY
](
_o_h___native_x_component.md#screeny-13
)
= 0.0 | 触摸点相对于
应用窗口左上角
的y坐标。 |
|
[
x
](
_o_h___native_x_component.md#x-13
)
= 0.0 | 触摸点相对于XComponent组件左边缘的x坐标。 |
|
[
y
](
_o_h___native_x_component.md#y-13
)
= 0.0 | 触摸点相对于XComponent组件上边缘的y坐标。 |
|
[
type
](
_o_h___native_x_component.md#type-12
)
= OH_NativeXComponent_TouchEventType::OH_NATIVEXCOMPONENT_UNKNOWN | 触摸事件的触摸类型。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录