diff --git a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_effectcomponent.png b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_effectcomponent.png
index 4c472a458467a1c8b699ba43af38a877b8c0545e..1a9d87ef2d4dee47d7335eb863ca8a0131ae9721 100644
Binary files a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_effectcomponent.png and b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_effectcomponent.png differ
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-effectcomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-effectcomponent.md
index 5b3ec1c5fa4e6493cc223474c7df93c5b012129b..5d993f61b1c26fe03657e32c789aae6f3855133b 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-effectcomponent.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-effectcomponent.md
@@ -26,7 +26,7 @@ EffectComponent()
 
 ## 事件
 
-无,不支持通用事件。
+不支持通用事件。
 
 ## 属性
 
@@ -35,7 +35,7 @@ EffectComponent()
 ## 示例
 
 ```ts
-//index.ets
+//Index.ets
 @Entry
 @Component
 struct Index {
@@ -45,7 +45,7 @@ struct Index {
         .autoResize(true)
       EffectComponent() {
         Column({ space: 20 }) {
-		  // 使用backgroundBlurStyle进行模糊绘制
+          // 使用backgroundBlurStyle进行模糊绘制
           Text("Normal text with backgroundBlurStyle")
             .textAlign(TextAlign.Center)
             .fontSize(16)
@@ -65,7 +65,7 @@ struct Index {
             .width('90%')
             .height('48')
 
-          // 使用useEffect进行模糊合并绘制,继承effectcomponent的模糊参数
+          // 使用useEffect进行模糊合并绘制,继承EffectComponent的模糊参数
           Text("Normal text with useeffcet blur 1")
             .textAlign(TextAlign.Center)
             .useEffect(true)
@@ -75,7 +75,7 @@ struct Index {
             .width('90%')
             .height('48')
 
-          // 使用useEffect进行模糊合并绘制,继承effectcomponent的模糊参数
+          // 使用useEffect进行模糊合并绘制,继承EffectComponent的模糊参数
           Text("Normal text with useeffcet blur 2")
             .textAlign(TextAlign.Center)
             .useEffect(true)
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-use-effect.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-use-effect.md
index 53fdaabc51ae1eb6330eaf3311d12daa8ddb6136..a46bcbe5a67a0ff77aed5b5eae96c46960bbeb81 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-use-effect.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-use-effect.md
@@ -1,10 +1,12 @@
-# 特效绘制合
+# 特效绘制合并
 
 用于对背景模糊等特效进行绘制合并。
 
 > **说明:**
 >
 > 从API Version 10开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
+>
+> 该接口为系统接口。
 
 ## 属性