From 86c287cc6d3e3d9eba48f2e54abd03f6b013dae0 Mon Sep 17 00:00:00 2001 From: HelloCrease Date: Tue, 9 May 2023 09:24:34 +0800 Subject: [PATCH] update docs Signed-off-by: HelloCrease --- .../reference/apis/Readme-CN.md | 1 + .../apis/js-apis-arkui-drawableDescriptor.md | 22 +++++++++---------- .../arkts-drawing-customization-on-canvas.md | 8 +++++-- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/Readme-CN.md b/zh-cn/application-dev/reference/apis/Readme-CN.md index 9dc49c54f0..1ce323236c 100755 --- a/zh-cn/application-dev/reference/apis/Readme-CN.md +++ b/zh-cn/application-dev/reference/apis/Readme-CN.md @@ -167,6 +167,7 @@ - UI界面 - [@ohos.animator (动画)](js-apis-animator.md) + - [@ohos.arkui.drawableDescriptor(DrawableDescriptor)](js-apis-arkui-drawableDescriptor.md) - [@ohos.curves (插值计算)](js-apis-curve.md) - [@ohos.matrix4 (矩阵变换)](js-apis-matrix4.md) - [@ohos.mediaquery (媒体查询)](js-apis-mediaquery.md) diff --git a/zh-cn/application-dev/reference/apis/js-apis-arkui-drawableDescriptor.md b/zh-cn/application-dev/reference/apis/js-apis-arkui-drawableDescriptor.md index dececbfebf..505acf9c61 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-arkui-drawableDescriptor.md +++ b/zh-cn/application-dev/reference/apis/js-apis-arkui-drawableDescriptor.md @@ -1,4 +1,4 @@ -# @ohos.arkui.drawableDescriptor (DrawableDescriptor) +#@ohos.arkui.drawableDescriptor(DrawableDescriptor) 本模块提供获取pixelMap的能力,包括前景、背景、蒙版和分层图标。 @@ -53,8 +53,8 @@ getPixelMap(): image.PixelMap; **返回值:** -| 类型 | 说明 | -| --------------------------------- | ---------------- | +| 类型 | 说明 | +| ---------------------------------------- | -------- | | [image.PixelMap](../apis/js-apis-image.md#pixelmap7) | PixelMap | **示例:** @@ -71,8 +71,8 @@ getPixelMap(): image.PixelMap; **返回值:** -| 类型 | 说明 | -| --------------------------------- | ---------------- | +| 类型 | 说明 | +| ---------------------------------------- | -------- | | [image.PixelMap](../apis/js-apis-image.md#pixelmap7) | PixelMap | **示例:** @@ -89,8 +89,8 @@ getForeground(): DrawableDescriptor; **返回值:** -| 类型 | 说明 | -| --------------------------------- | ---------------- | +| 类型 | 说明 | +| ---------------------------------------- | -------------------- | | [DrawableDescriptor](#drawabledescriptor) | DrawableDescriptor对象 | **示例:** @@ -107,8 +107,8 @@ getBackground(): DrawableDescriptor; **返回值:** -| 类型 | 说明 | -| --------------------------------- | ---------------- | +| 类型 | 说明 | +| ---------------------------------------- | -------------------- | | [DrawableDescriptor](#drawabledescriptor) | DrawableDescriptor对象 | **示例:** @@ -125,8 +125,8 @@ getMask(): DrawableDescriptor; **返回值:** -| 类型 | 说明 | -| --------------------------------- | ---------------- | +| 类型 | 说明 | +| ---------------------------------------- | -------------------- | | [DrawableDescriptor](#drawabledescriptor) | DrawableDescriptor对象 | **示例:** diff --git a/zh-cn/application-dev/ui/arkts-drawing-customization-on-canvas.md b/zh-cn/application-dev/ui/arkts-drawing-customization-on-canvas.md index bad333289f..e80a0c2f43 100644 --- a/zh-cn/application-dev/ui/arkts-drawing-customization-on-canvas.md +++ b/zh-cn/application-dev/ui/arkts-drawing-customization-on-canvas.md @@ -89,7 +89,7 @@ Canvas提供画布组件,用于自定义绘制图形,开发者使用CanvasRe import lottie from '@ohos/lottie' ``` - 具体接口参考[Lottie](../reference/arkui-ts/ts-components-canvas-lottie.md),相关实例请参考[Lottie实例](https://gitee.com/openharmony/applications_app_samples/tree/master/code/Solutions/Game/Lottie)。 + 具体接口参考[Lottie](../reference/arkui-ts/ts-components-canvas-lottie.md),具体实例请参考[Lottie动画](#相关实例)。 >**说明:** > @@ -344,4 +344,8 @@ OffscreenCanvasRenderingContext2D对象和CanvasRenderingContext2D对象提供 ![2023032422159](figures/2023032422159.jpg) - ​ \ No newline at end of file + ## 相关实例 + + 使用画布绘制自定义图形,有以下相关实例可供参考: + + - [Lottie动画](https://gitee.com/openharmony/applications_app_samples/tree/master/code/Solutions/Game/Lottie) \ No newline at end of file -- GitLab