feat(RollingText): add height props (#11990)

* feat(RollingText): add height setting

* chore: npm run test

* fix: use match instead of replace

* feat: height setting

* fix: api table
This commit is contained in:
cunzaizhuyi 2023-06-17 21:22:34 +08:00 committed by GitHub
parent 79564847b3
commit 4672910b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 11 deletions

View File

@ -102,6 +102,7 @@ export default {
:duration="2" :duration="2"
stop-order="rtl" stop-order="rtl"
direction="up" direction="up"
:height="70"
/> />
``` ```
@ -109,10 +110,10 @@ export default {
.my-rolling-text { .my-rolling-text {
--van-rolling-text-background: deepskyblue; --van-rolling-text-background: deepskyblue;
--van-rolling-text-color: white; --van-rolling-text-color: white;
--van-rolling-text-font-size: 20px; --van-rolling-text-font-size: 40px;
--van-rolling-text-gap: 6px; --van-rolling-text-gap: 6px;
--van-rolling-text-single-border-radius: 5px; --van-rolling-text-single-border-radius: 5px;
--van-rolling-text-single-width: 25px; --van-rolling-text-single-width: 50px;
} }
``` ```
@ -166,6 +167,7 @@ export default {
| direction | Rolling direction of the text, with `down` and `up` as the values | _string_ | `down` | | direction | Rolling direction of the text, with `down` and `up` as the values | _string_ | `down` |
| auto-start | Whether to start the animation | _boolean_ | `true` | | auto-start | Whether to start the animation | _boolean_ | `true` |
| stop-order | Order of stopping the animation of each digit, with `ltr` and `rtl` as the values | _string_ | `ltr` | | stop-order | Order of stopping the animation of each digit, with `ltr` and `rtl` as the values | _string_ | `ltr` |
| height | Height of digit, `px` as unit | _number_ | `40` |
### Methods ### Methods

View File

@ -102,6 +102,7 @@ export default {
:duration="2" :duration="2"
stop-order="rtl" stop-order="rtl"
direction="up" direction="up"
:height="70"
/> />
``` ```
@ -109,10 +110,10 @@ export default {
.my-rolling-text { .my-rolling-text {
--van-rolling-text-background: deepskyblue; --van-rolling-text-background: deepskyblue;
--van-rolling-text-color: white; --van-rolling-text-color: white;
--van-rolling-text-font-size: 20px; --van-rolling-text-font-size: 40px;
--van-rolling-text-gap: 6px; --van-rolling-text-gap: 6px;
--van-rolling-text-single-border-radius: 5px; --van-rolling-text-single-border-radius: 5px;
--van-rolling-text-single-width: 25px; --van-rolling-text-single-width: 50px;
} }
``` ```
@ -166,6 +167,7 @@ export default {
| direction | 文本翻滚方向,值为 `down``up` | _string_ | `down` | | direction | 文本翻滚方向,值为 `down``up` | _string_ | `down` |
| auto-start | 是否自动开始动画 | _boolean_ | `true` | | auto-start | 是否自动开始动画 | _boolean_ | `true` |
| stop-order | 各个数位动画停止先后顺序,值为 `ltr``rtl` | _string_ | `ltr` | | stop-order | 各个数位动画停止先后顺序,值为 `ltr``rtl` | _string_ | `ltr` |
| height | 数位高度,单位为 `px` | _number_ | `40` |
### 方法 ### 方法

View File

@ -39,6 +39,7 @@ export const rollingTextProps = {
autoStart: truthProp, autoStart: truthProp,
direction: makeStringProp<RollingTextDirection>('down'), direction: makeStringProp<RollingTextDirection>('down'),
stopOrder: makeStringProp<RollingTextStopOrder>('ltr'), stopOrder: makeStringProp<RollingTextStopOrder>('ltr'),
height: makeNumberProp(40),
}; };
const CIRCLE_NUM = 2; const CIRCLE_NUM = 2;
@ -143,6 +144,7 @@ export default defineComponent({
duration={props.duration} duration={props.duration}
direction={props.direction} direction={props.direction}
isStart={rolling.value} isStart={rolling.value}
height={props.height}
delay={getDelay(i, targetNumArr.value.length)} delay={getDelay(i, targetNumArr.value.length)}
/> />
))} ))}

View File

@ -14,10 +14,9 @@ export const props = {
duration: makeNumberProp(2), duration: makeNumberProp(2),
isStart: Boolean, isStart: Boolean,
direction: String, direction: String,
height: makeNumberProp(40),
}; };
const HEIGHT = 40;
export default defineComponent({ export default defineComponent({
name: 'RollSingle', name: 'RollSingle',
@ -40,15 +39,16 @@ export default defineComponent({
const newFigureArr = computed(directionConfig.dataHandle); const newFigureArr = computed(directionConfig.dataHandle);
const totalHeight = computed( const totalHeight = computed(
() => HEIGHT * props.figureArr.length - HEIGHT () => props.height * props.figureArr.length - props.height
); );
const translateValPx = computed(() => `-${totalHeight.value}px`); const translateValPx = computed(() => `-${totalHeight.value}px`);
const itemStyleObj = { const itemStyleObj = {
lineHeight: addUnit(HEIGHT), lineHeight: addUnit(props.height),
}; };
const getStyle = () => ({ const getStyle = () => ({
height: addUnit(HEIGHT), height: addUnit(props.height),
'--van-translate': translateValPx.value, '--van-translate': translateValPx.value,
'--van-duration': props.duration + 's', '--van-duration': props.duration + 's',
'--van-delay': props.delay + 's', '--van-delay': props.delay + 's',

View File

@ -138,6 +138,7 @@ const reset = () => {
:auto-start="isStart4" :auto-start="isStart4"
stop-order="rtl" stop-order="rtl"
direction="up" direction="up"
:height="70"
/> />
</div> </div>
</demo-block> </demo-block>
@ -153,6 +154,7 @@ const reset = () => {
:auto-start="false" :auto-start="false"
stop-order="rtl" stop-order="rtl"
direction="up" direction="up"
:height="70"
/> />
<van-grid clickable :column-num="3" style="margin-top: 10px"> <van-grid clickable :column-num="3" style="margin-top: 10px">
<van-grid-item icon="play-circle-o" :text="t('start')" @click="start" /> <van-grid-item icon="play-circle-o" :text="t('start')" @click="start" />
@ -178,9 +180,9 @@ const reset = () => {
.my-rolling-text { .my-rolling-text {
--van-rolling-text-background: deepskyblue; --van-rolling-text-background: deepskyblue;
--van-rolling-text-color: white; --van-rolling-text-color: white;
--van-rolling-text-font-size: 20px; --van-rolling-text-font-size: 40px;
--van-rolling-text-gap: 6px; --van-rolling-text-gap: 6px;
--van-rolling-text-single-border-radius: 5px; --van-rolling-text-single-border-radius: 5px;
--van-rolling-text-single-width: 25px; --van-rolling-text-single-width: 50px;
} }
</style> </style>