diff --git a/zh-cn/application-dev/reference/arkui-js/js-components-media-video.md b/zh-cn/application-dev/reference/arkui-js/js-components-media-video.md
index b2ebd490827ecd26ac234f1d50c04eeb9b2e8da0..35f4c568612f80100598509f7421d1128c3397cb 100644
--- a/zh-cn/application-dev/reference/arkui-js/js-components-media-video.md
+++ b/zh-cn/application-dev/reference/arkui-js/js-components-media-video.md
@@ -5,7 +5,7 @@
>
> - 从API version 4开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
>
-> - 需要在config.json对应的"abilities"中设置"*configChanges*"属性为"orientation"
+> - 需要在config.json对应的"abilities"中设置"configChanges"属性为"orientation"
> ```
> "abilities": [
> {
@@ -78,3 +78,58 @@
>  **说明:**
> 在attached组件生命周期回调后,可以调用上述组件方法。
+
+## 示例
+
+```
+
+
+
+
+```
+
+```
+/* xxx.css */
+.container {
+ justify-content: center;
+ align-items: center;
+}
+```
+
+```
+// xxx.js
+export default {
+ data: {
+ event:'',
+ seekingtime:'',
+ timeupdatetime:'',
+ seekedtime:'',
+ isStart: true,
+ duration: '',
+ },
+ preparedCallback:function(e){ this.event = '视频连接成功'; this.duration = e.duration;},
+ startCallback:function(){ this.event = '视频开始播放';},
+ pauseCallback:function(){ this.event = '视频暂停播放'; },
+ finishCallback:function(){ this.event = '视频播放结束';},
+ errorCallback:function(){ this.event = '视频播放错误';},
+ seekingCallback:function(e){ this.seekingtime = e.currenttime; },
+ timeupdateCallback:function(e){ this.timeupdatetime = e.currenttime;},
+ change_start_pause: function() {
+ if(this.isStart) {
+ this.$element('videoId').pause();
+ this.isStart = false;
+ } else {
+ this.$element('videoId').start();
+ this.isStart = true;
+ }
+ },
+}
+```
+