From 1ccf211ddd084919d1136b7a843df01208e4f3d0 Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 24 Jun 2023 10:37:22 +0800 Subject: [PATCH] docs(RollingText): improve document (#12020) --- packages/vant/src/rolling-text/README.md | 49 ++++------------- .../vant/src/rolling-text/README.zh-CN.md | 55 +++++-------------- packages/vant/src/rolling-text/demo/index.vue | 19 +------ 3 files changed, 26 insertions(+), 97 deletions(-) diff --git a/packages/vant/src/rolling-text/README.md b/packages/vant/src/rolling-text/README.md index 88523c9ef..0e56ff619 100644 --- a/packages/vant/src/rolling-text/README.md +++ b/packages/vant/src/rolling-text/README.md @@ -20,28 +20,18 @@ app.use(RollingText); ### Basic Usage +You can set the starting value with `start-num` and the target value with `target-num`. The RollingText component will automatically start the animation, rolling from the starting value to the target value. + ```html - + ``` ### Set Rolling Direction -You can set the rolling direction of the number by using the `direction` property. `up` represents rolling up. +You can set the rolling direction of the numbers using the `direction` prop. By default, it rolls downwards, but you can set it to `up` to roll upwards. ```html - + ``` ### Set Stop Order @@ -49,14 +39,7 @@ You can set the rolling direction of the number by using the `direction` propert You can set the order of stopping the animation of each digit through the `stop-order` prop. By default, it stops from the higher digits. Setting `rtl` can stop from the ones digit. ```html - + ``` ### Roll Non-numeric Text @@ -64,13 +47,7 @@ You can set the order of stopping the animation of each digit through the `stop- You can reverse non-numeric content by using the `text-list` prop. The component will rolling from the first item to the last item in the array. Please make sure that the array length is greater than or equal to 2, and that each item has the same length. ```html - + ``` ```js @@ -94,15 +71,14 @@ export default { ### Custom Style +The RollingText component provides some CSS variables that you can override to customize the style, or you can directly modify the component's style. Additionally, you can set the height of the numbers using the `height` prop. + ```html ``` @@ -119,17 +95,14 @@ export default { ### Manual Control -After getting the component instance through `ref`, you can call the `start` and `reset` methods. +After obtaining the component instance through `ref`, you can call the `start` and `reset` methods. The `start` method is used to start the animation, and the `reset` method is used to reset the animation. ```html diff --git a/packages/vant/src/rolling-text/README.zh-CN.md b/packages/vant/src/rolling-text/README.zh-CN.md index a757f7077..8975bbd5b 100644 --- a/packages/vant/src/rolling-text/README.zh-CN.md +++ b/packages/vant/src/rolling-text/README.zh-CN.md @@ -20,43 +20,26 @@ app.use(RollingText); ### 基础用法 +你可以通过 `start-num` 设置起始数值,`target-num` 设置目标数值。RollingText 组件会自动开始动画,从起始数值翻滚到目标数值。 + ```html - + ``` ### 设置翻滚方向 -可以通过 `direction` 属性设置数字的翻滚方向。`up` 表示向上翻滚。 +你可以通过 `direction` 属性设置数字的翻滚方向,默认为向下翻滚,设置为 `up` 即可向上翻滚。 ```html - + ``` ### 设置各数位停止顺序 -可以通过 `stop-order` 属性设置动画各个数位的停止先后顺序。默认先停止高位。设置 `rtl` 可以先从个位停止。 +你可以通过 `stop-order` 属性设置动画各个数位的停止先后顺序。默认先停止高位,设置为 `rtl` 可以先从个位停止。 ```html - + ``` ### 翻转非数字内容 @@ -64,13 +47,7 @@ app.use(RollingText); 你可以使用 `text-list` 属性设置非数字内容的翻转。组件会从数组的第一项翻转到最后一项,请确保数组长度大于等于 2,以及每一项的长度一致。 ```html - + ``` ```js @@ -94,15 +71,14 @@ export default { ### 自定义样式 +RollingText 组件提供了一些 CSS 变量,你可以覆盖这些变量来自定义样式,也可以直接修改组件的样式。此外,你还可以通过 `height` 属性设置数字高度。 + ```html ``` @@ -119,17 +95,14 @@ export default { ### 手动控制 -通过 ref 获取到组件实例后,可以调用 `start`、`reset` 方法。 +通过 ref 获取到组件实例后,你可以调用 `start`、`reset` 方法,`start` 方法用于开始动画,`reset` 方法用于重置动画。 ```html @@ -160,14 +133,14 @@ export default { | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | -| start-num | 开始数值 | _number_ | `0` | +| start-num | 起始数值 | _number_ | `0` | | target-num | 目标数值 | _number_ | - | | text-list | 内容数组,用于翻转非数字内容 | _string[]_ | `[]` | | duration | 动画时长,单位为秒 | _number_ | `2` | | direction | 文本翻滚方向,值为 `down` 和 `up` | _string_ | `down` | | auto-start | 是否自动开始动画 | _boolean_ | `true` | | stop-order | 各个数位动画停止先后顺序,值为 `ltr` 和 `rtl` | _string_ | `ltr` | -| height | 数位高度,单位为 `px` | _number_ | `40` | +| height | 数字高度,单位为 `px` | _number_ | `40` | ### 方法 diff --git a/packages/vant/src/rolling-text/demo/index.vue b/packages/vant/src/rolling-text/demo/index.vue index f56cddd90..162889c6c 100644 --- a/packages/vant/src/rolling-text/demo/index.vue +++ b/packages/vant/src/rolling-text/demo/index.vue @@ -61,13 +61,7 @@ const reset = () => {