diff --git a/img/cardParams.png b/img/cardParams.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb5c964e730cb02cace8c61656eaf7d0f2ab2e08
Binary files /dev/null and b/img/cardParams.png differ
diff --git a/zh-cn/dayJs.md b/zh-cn/dayJs.md
index ce936d6b1d46dff396610dc37d2c7333abf8a5f1..ab4bf7446350a4aad5b8778d6dc25923ac66b36d 100644
--- a/zh-cn/dayJs.md
+++ b/zh-cn/dayJs.md
@@ -26,7 +26,7 @@ npm install dayjs --save
#### **yarn**
```bash
-yarn dayjs --save
+yarn add dayjs --save
```
@@ -339,3 +339,4 @@ dayjs.extend(duration)
## 其他
## 开源协议
+本项目基于 [The MIT License (MIT)](https://github.com/iamkun/dayjs) ,请自由地享受和参与开源。
diff --git a/zh-cn/react-native-ezswiper.md b/zh-cn/react-native-ezswiper.md
new file mode 100644
index 0000000000000000000000000000000000000000..bf8ed8643206e3fc9f992787da0318d4a19b4506
--- /dev/null
+++ b/zh-cn/react-native-ezswiper.md
@@ -0,0 +1,357 @@
+> 模板版本:v0.1.3
+
+
+
react-native-ezswiper
+
+
+
+
+
+
+
+
+
+
+> [!tip]
+>
+> [Github 地址](https://github.com/react-native-oh-library/react-native-ezswiper/tree/sig)
+
+## 安装与使用
+
+进入到工程目录并输入以下命令:
+
+
+
+#### **npm**
+
+```bash
+npm install react-native-ezswiper@1.3.0 --save
+```
+
+#### **yarn**
+
+```bash
+yarn add react-native-ezswiper@1.3.0 --save
+```
+
+
+
+下面的代码展示了这个库的基本使用场景:
+
+```js
+/**
+ * Sample React Native App
+ * https://github.com/facebook/react-native
+ * @flow
+ */
+
+import React, { Component } from 'react';
+import {
+ StyleSheet,
+ Text,
+ Button,
+ View,
+ Dimensions,
+ ScrollView,
+ Image
+} from 'react-native';
+
+const { width } = Dimensions.get('window');
+import EZSwiper from 'react-native-ezswiper';
+
+export default class App extends Component<{}> {
+ constructor(props) {
+ super(props)
+ this.state = {
+ currentPage: 0,
+ };
+ }
+
+ renderTitle(title) {
+ return {title}
+ }
+
+ renderRow(obj, index) {
+ return (
+
+ {obj}
+
+ )
+ }
+
+ renderImageRow(obj, index) {
+ return (
+
+
+ {'Victoria\'s Secre ' + index}
+
+
+ )
+ }
+
+
+ onPressRow(obj, index) {
+ console.log('onPressRow=>obj:' + obj + ' ,index:' + index);
+ alert('onPressRow=>obj:' + obj + ' ,index:' + index);
+ }
+
+ onWillChange(obj, index) {
+ console.log('onWillChange=>obj:' + obj + ' ,index:' + index);
+ }
+
+ onDidChange(obj, index, setDidChangeObj, setIndex) {
+ setDidChangeObj(obj);
+ setIndex(index)
+ }
+
+ render() {
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
+
+
+const DidChangeDom = (props) => {
+ const [didChangeObj, setDidChangeObj] = React.useState(0);
+ const [index, setIndex] = React.useState(0);
+
+ return (
+
+
+ obj:{didChangeObj}
+ index:{index}
+
+ {
+ setDidChangeObj(obj)
+ setIndex(index)
+ }} />
+ )
+}
+
+const WillChangeDom = (props) => {
+ const [didChangeObj, setDidChangeObj] = React.useState(0);
+ const [index, setIndex] = React.useState(0);
+
+ return (
+
+
+ obj:{didChangeObj}
+ index:{index}
+
+ {
+ setDidChangeObj(obj)
+ setIndex(index)
+ }} />
+ )
+}
+
+function ScrollToDom(props) {
+ this.refDom = null;
+ const refDomFn = (view) => {
+ this.refDom = view
+ }
+ const scrollTo = (index) => {
+ if (this.refDom) {
+ this.refDom.scrollTo(index + 1, true)
+ }
+ }
+ return (
+
+
+
+
+ )
+}
+
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ backgroundColor: 'white',
+ },
+ swiper: {
+ backgroundColor: 'white',
+ },
+ button: {
+ width: 50,
+ height: 30,
+ },
+ cell: {
+ backgroundColor: 'red',
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ pageControl: {
+ position: 'absolute',
+ bottom: 4,
+ right: 10,
+ },
+});
+```
+
+
+
+## 约束与限制
+
+## 兼容性
+
+本文档内容基于以下版本验证通过:
+
+react-native-harmony:0.72.20; SDK:HarmonyOS NEXT Developer Beta1; IDE:DevEco Studio 5.0.3.200; ROM:3.0.0.18;
+
+## 属性
+
+> [!tip]
+>
+> "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!tip]
+>
+> "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | default | Required | Platform | HarmonyOS Support |
+| --------------------- | ------------------------------------------------------------------------------------------------------ | -------- | -------- | -------- | ----------------- | ----------------- |
+| `width` | swiper width | number | | Yes | All | yes |
+| `height` | swiper height | number | | Yes | All | yes |
+| `index` | initial index bar. | number | 0 | No | All | yes |
+| `offset` | initial left and right or up and down offsets view. | number | 0 | No | All | yes |
+| `horizontal` | swiper derection is horizontal | boolean | true | No | All | yes |
+| `loop` | swiper is loop | boolean | true | No | All | yes |
+| `autoplayTimeout` | auto play mode (in second) | number | 5 | No | All | yes |
+| `autoplayDirection` | cycle direction control | boolean | true | No | All | yes |
+| `ratio` | scaling ratio | number | 1 | No | All | yes |
+| `cardParams` | swiper card advanced object | object | {} | No | All | yes |
+| `renderRow` | render card view | function | | Yes | All | yes |
+| `onPress` | card is clicked action | function | | No | All | yes |
+| `onWillChange` | next card will show | function | | No | All | yes |
+| `onDidChange` | next card showed | function | | No | All | yes |
+
+cardParams is object:{cardSide,cardSmallSide,cardSpace}
+
+
+## 静态方法
+
+> [!tip] "Platform"列表示该属性在原三方库上支持的平台。
+
+> [!tip] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
+
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------------------- | ------------------------------------------------------------------------------------------------------ | -------- | -------- | -------- | ----------------- |
+| `scrollTo(index, animated = true)` | scroll to position | function | No | All | yes |
+
+## 遗留问题
+
+ 无
+
+## 其他
+
+## 开源协议
+
+本项目基于 [The MIT License (MIT)](https://github.com/easyui/react-native-ezswiper) ,请自由地享受和参与开源。