Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
23980bce
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,发现更多精彩内容 >>
未验证
提交
23980bce
编写于
6月 06, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 06, 2023
浏览文件
操作
浏览文件
下载
差异文件
!18164 【4.0.8.1版本】【基础能力】新增点击回弹效果通用属性 doc
Merge pull request !18164 from sunjiakun/master
上级
2de1b7fc
617f7c24
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
105 addition
and
0 deletion
+105
-0
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
+1
-0
zh-cn/application-dev/reference/arkui-ts/figures/clickeffect.gif
...pplication-dev/reference/arkui-ts/figures/clickeffect.gif
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
...n/application-dev/reference/arkui-ts/ts-appendix-enums.md
+9
-0
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-click-effect.md
...eference/arkui-ts/ts-universal-attributes-click-effect.md
+95
-0
未找到文件。
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
浏览文件 @
23980bce
...
...
@@ -46,6 +46,7 @@
-
[
图像球面效果
](
ts-universal-attributes-sphericalEffect.md
)
-
[
图像渐亮效果
](
ts-universal-attributes-lightUpEffect.md
)
-
[
图像边缘像素扩展效果
](
ts-universal-attributes-pixelStretchEffect.md
)
-
[
点击回弹
](
ts-universal-attributes-click-effect.md
)
-
模态转场设置
-
[
全屏模态转场
](
ts-universal-attributes-modal-transition.md
)
-
[
半模态转场
](
ts-universal-attributes-sheet-transition.md
)
...
...
zh-cn/application-dev/reference/arkui-ts/figures/clickeffect.gif
0 → 100644
浏览文件 @
23980bce
246.8 KB
zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
浏览文件 @
23980bce
...
...
@@ -540,3 +540,12 @@
| BOTTOM | 窗口的下边缘 |
| START | 窗口的左边缘 |
| END | 窗口的右边缘 |
## ClickEffectLevel<sup>10+<sup>
| 名称 | 描述 | 动效参数 | 默认缩放比 |
| ------ | --------------------------------- | --------------------------------- | --------------------------------- |
| LIGHT | 小面积(轻盈) | 弹簧动效, 刚性:410,阻尼:38,初始速度:1 | 90% |
| MIDDLE | 中面积(稳定) | 弹簧动效, 刚性:350,阻尼:35,初始速度:0.5 | 95% |
| HEAVY | 大面积(厚重) | 弹簧动效, 刚性:240,阻尼:28,初始速度:0 | 95% |
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-click-effect.md
0 → 100755
浏览文件 @
23980bce
# 点击回弹效果
设置组件点击时回弹效果。
> **说明:**
>
> 从API Version 10开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
### 属性
| 名称 | 参数类型 | 描述 |
| ----------- | ------------------- | ------------------------------------------------------------ |
| clickEffect |
[
ClickEffect
](
#clickeffect对象说明
)
\|
null | 设置当前组件点击回弹效果。
<br/>
**说明:**
<br/>
可通过null取消点击回弹效果。 |
### ClickEffect对象说明
| 名称 | 参数类型 | 必填 | 描述 |
| ----- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| level |
[
ClickEffectLevel
](
ts-appendix-enums.md#clickeffectlevel10
)
| 是 | 设置当前组件点击回弹效果。
<br/>
默认值:ClickEffectLevel.LIGHT |
| scale | number | 否 | 回弹缩放比例,支持在设置ClickEffectLevel的基础上微调回弹缩放比例。
<br/>
**说明:**
<br/>
level等于ClickEffectLevel.LIGHT时,默认值:0.90
<br/>
level等于ClickEffectLevel.MIDDLE或者ClickEffectLevel.HEAVY时,默认值:0.95 |
### 示例
```
ts
// xxx.ets
@
Entry
@
Component
struct
ToggleExample
{
build
()
{
Column
({
space
:
10
})
{
Text
(
'
type: Switch
'
).
fontSize
(
12
).
fontColor
(
0xcccccc
).
width
(
'
90%
'
)
Flex
({
justifyContent
:
FlexAlign
.
SpaceEvenly
,
alignItems
:
ItemAlign
.
Center
})
{
Toggle
({
type
:
ToggleType
.
Switch
,
isOn
:
false
})
.
clickEffect
({
level
:
ClickEffectLevel
.
LIGHT
})
.
selectedColor
(
'
#007DFF
'
)
.
switchPointColor
(
'
#FFFFFF
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
Toggle
({
type
:
ToggleType
.
Switch
,
isOn
:
true
})
.
clickEffect
({
level
:
ClickEffectLevel
.
LIGHT
,
scale
:
0.5
})
.
selectedColor
(
'
#007DFF
'
)
.
switchPointColor
(
'
#FFFFFF
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
}
Text
(
'
type: Checkbox
'
).
fontSize
(
12
).
fontColor
(
0xcccccc
).
width
(
'
90%
'
)
Flex
({
justifyContent
:
FlexAlign
.
SpaceEvenly
,
alignItems
:
ItemAlign
.
Center
})
{
Toggle
({
type
:
ToggleType
.
Checkbox
,
isOn
:
false
})
.
clickEffect
({
level
:
ClickEffectLevel
.
MIDDLE
})
.
size
({
width
:
20
,
height
:
20
})
.
selectedColor
(
'
#007DFF
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
Toggle
({
type
:
ToggleType
.
Checkbox
,
isOn
:
true
})
.
clickEffect
({
level
:
ClickEffectLevel
.
MIDDLE
,
scale
:
0.5
})
.
size
({
width
:
20
,
height
:
20
})
.
selectedColor
(
'
#007DFF
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
}
Text
(
'
type: Button
'
).
fontSize
(
12
).
fontColor
(
0xcccccc
).
width
(
'
90%
'
)
Flex
({
justifyContent
:
FlexAlign
.
SpaceEvenly
,
alignItems
:
ItemAlign
.
Center
})
{
Toggle
({
type
:
ToggleType
.
Button
,
isOn
:
false
})
{
Text
(
'
status button
'
).
fontColor
(
'
#182431
'
).
fontSize
(
12
)
}.
width
(
106
)
.
clickEffect
({
level
:
ClickEffectLevel
.
HEAVY
})
.
selectedColor
(
'
rgba(0,125,255,0.20)
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
Toggle
({
type
:
ToggleType
.
Button
,
isOn
:
true
})
{
Text
(
'
status button
'
).
fontColor
(
'
#182431
'
).
fontSize
(
12
)
}.
width
(
106
)
.
clickEffect
({
level
:
ClickEffectLevel
.
HEAVY
,
scale
:
0.5
})
.
selectedColor
(
'
rgba(0,125,255,0.20)
'
)
.
onChange
((
isOn
:
boolean
)
=>
{
console
.
info
(
'
Component status:
'
+
isOn
)
})
}
}.
width
(
'
100%
'
).
padding
(
24
)
}
}
```
![
clickeffect
](
figures/clickeffect.gif
)
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录