diff --git a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001250678457.gif b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001250678457.gif
index 6b44b6a2adc2528e13e95bc10d2a67874226a63b..96afd9a948c90e22cd52ab4c55218bf97591b3ec 100644
Binary files a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001250678457.gif and b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001250678457.gif differ
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-richtext.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-richtext.md
index 26b9f549bcee8f40b4dd7d04e15f71a486be17a3..8665726da62968a9a44e71b1ba6b4f76781e52b6 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-richtext.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-richtext.md
@@ -48,7 +48,7 @@ RichText\(content:string\)
| \ | 用于定义客户端文本,比如JavaScript。 | \ |
## 示例
-
+示例效果请以真机运行为准,当前IDE预览器不支持。
```
@Entry
@Component
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
index 8c28acff124c4e5ee57997331a6a915b7f928e19..adb4d20481d19aa1a59c82b5e88792242a780e04 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
@@ -83,7 +83,8 @@ getXComponentContext(): Object
## 示例
-提供surface类型XComponent,支持相机预览等能力。
+提供surface类型XComponent,支持相机预览等能力。
+示例效果请以真机运行为准,当前IDE预览器不支持。
```
import camera from '@ohos.multimedia.camera';
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md
index 69d70e9c745cdc6ce553309a311376efdc601e9a..a26b8137956befec8e1153e987e4fb49998f88c4 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md
@@ -63,7 +63,7 @@ struct PopupExample {
@Builder popupBuilder() {
Row({ space: 2 }) {
Image('/resource/ic_public_thumbsup.svg').width(24).height(24).margin({ left: -5 })
- Text('Custom Popup').fontSize(12)
+ Text('Custom Popup').fontSize(10)
}.width(100).height(50).backgroundColor(Color.White)
}
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md
index 44b12c4482f71352de12022b04dd858f577a641f..00b052581dc316917ef8f27efcaec8b86eebbd2f 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md
@@ -36,7 +36,7 @@ struct ZIndexExample {
Text('third child, zIndex(1)')
.size({width: '70%', height: '50%'}).backgroundColor(0xc1cbac).align(Alignment.TopStart)
.zIndex(1)
- }
+ }.width('100%').height(200)
}.width('100%').height(200)
}
}