From 09062ee3d73fa9d2e40cc8ef38e491b7dc1cbfe8 Mon Sep 17 00:00:00 2001 From: chenyuhuai Date: Thu, 25 Aug 2022 15:46:00 +0800 Subject: [PATCH] update backgroundImageSize docs Signed-off-by: chenyuhuai --- .../arkui-ts/ts-universal-attributes-backgroundBlurStyle.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md index e991966730..b53e7ca746 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md @@ -32,7 +32,6 @@ // xxx.ets @Entry @Component - struct Index { build() { Column() { @@ -42,12 +41,13 @@ struct Index { .width(350) .height(300) .backgroundBlurStyle(BlurStyle.Thin) - .position({x: "15%", y: "30%"}) + .position({ x: "15%", y: "30%" }) } .height('100%') .width('100%') .backgroundImage($r('app.media.bg')) .backgroundImageSize(ImageSize.Cover) } +} ``` ![zh-cn_image_background_blur_style](figures/zh-cn_image_background_blur_style.png) \ No newline at end of file -- GitLab