From 862d0f01a616e7187c0d6f103e2810ae9921018c Mon Sep 17 00:00:00 2001 From: groundnuts Date: Mon, 13 Jun 2022 08:02:42 +0000 Subject: [PATCH] =?UTF-8?q?=E3=80=90OpenHarmony=E5=BC=80=E6=BA=90=E8=B4=A1?= =?UTF-8?q?=E7=8C=AE=E8=80=85=E8=AE=A1=E5=88=922022=E3=80=91=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=B8=AD=E6=96=87js-apis-animator.md=E4=B8=AD?= =?UTF-8?q?=E7=AC=A6=E5=8F=B7=E5=92=8C=E8=A1=A8=E8=BE=BE=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E6=80=A7=E9=97=AE=E9=A2=98=20Signed-off-by:=20groundnuts=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-cn/application-dev/reference/apis/js-apis-animator.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-animator.md b/zh-cn/application-dev/reference/apis/js-apis-animator.md index 813ca9b651..6ba9756758 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-animator.md +++ b/zh-cn/application-dev/reference/apis/js-apis-animator.md @@ -226,12 +226,12 @@ animator.onrepeat(); 定义动画选项。 -**系统能力:** 以下各项对应的系统能力均为SystemCapability.ArkUI.ArkUI.Full +**系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 参数类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | | duration | number | 是 | 动画播放的时长,单位毫秒,默认为0。 | -| easing | string | 是 | 动画插值曲线,默认为ease'。 | +| easing | string | 是 | 动画插值曲线,默认为'ease'。 | | delay | number | 是 | 动画延时播放时长,单位毫秒,默认为0,即不延时。 | | fill | "none" \| "forwards" \| "backwards" \| "both" | 是 | 动画执行后是否恢复到初始状态,默认值为"none"。动画执行后,动画结束时的状态(在最后一个关键帧中定义)将保留。 | | direction | "normal" \| "reverse" \| "alternate" \| "alternate-reverse" | 是 | 动画播放模式,默认值"normal"。| -- GitLab