docs(Progress): improve transition demo (#9335)

* docs(Progress): improve transition demo

* fix: demo margin
This commit is contained in:
neverland 2021-08-26 10:04:19 +08:00 committed by GitHub
parent 9f9380df7e
commit 3e74e451bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 37 deletions

View File

@ -2,8 +2,6 @@
import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const format = (rate: number) => Math.min(Math.max(rate, 0), 100);
const i18n = {
'zh-CN': {
left: '左侧',
@ -43,6 +41,8 @@ const gradientColor = {
'100%': '#6149f6',
};
const format = (rate: number) => Math.min(Math.max(rate, 0), 100);
const add = () => {
rate.value = format(rate.value + 20);
};

View File

@ -1,6 +1,6 @@
<script setup lang="ts">
import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
import { reactive } from '@vue/reactivity';
const i18n = {
'zh-CN': {
@ -8,39 +8,27 @@ const i18n = {
title3: '样式定制',
strokeWidth: '线条粗细',
transition: '过渡效果',
increase: '增加',
decrease: '减少',
},
'en-US': {
title2: 'Inactive',
title3: 'Custom Style',
strokeWidth: 'Stroke Width',
transition: 'Transition Effect',
increase: 'increase',
decrease: 'decrease',
transition: 'Transition',
},
};
const t = useTranslate(i18n);
const state = reactive({
percentage: 0,
});
const percentage = ref(50);
const increment = 10;
const increase = () => {
if (state.percentage >= 100 - increment) {
state.percentage = 100;
} else {
state.percentage += increment;
}
const format = (rate: number) => Math.min(Math.max(rate, 0), 100);
const add = () => {
percentage.value = format(percentage.value + 20);
};
const decrease = () => {
if (state.percentage <= increment) {
state.percentage = 0;
} else {
state.percentage -= increment;
}
const reduce = () => {
percentage.value = format(percentage.value - 20);
};
</script>
@ -69,10 +57,15 @@ const decrease = () => {
</demo-block>
<demo-block :title="t('transition')">
<van-progress inactive :percentage="state.percentage" />
<div style="display: flex; justify-content: space-around">
<van-button @click="decrease">{{ t('decrease') }}</van-button>
<van-button @click="increase">{{ t('increase') }}</van-button>
<van-progress inactive :percentage="percentage" />
<div style="margin-top: 15px">
<van-button :text="t('add')" type="primary" size="small" @click="add" />
<van-button
:text="t('decrease')"
type="danger"
size="small"
@click="reduce"
/>
</div>
</demo-block>
</template>
@ -82,11 +75,19 @@ const decrease = () => {
background: var(--van-white);
.van-progress {
margin: 20px;
margin: 20px 16px;
&:first-of-type {
margin-top: 5px;
}
}
.van-button {
margin: var(--van-padding-md) 0 0 10px;
&:first-of-type {
margin-left: var(--van-padding-md);
}
}
}
</style>

View File

@ -80,31 +80,31 @@ exports[`should render demo and match snapshot 1`] = `
<div>
<div class="van-progress">
<span class="van-progress__portion"
style="background: rgb(202, 202, 202); transform: scaleX(0);"
style="background: rgb(202, 202, 202); transform: scaleX(0.5);"
>
</span>
<span style="left: 0%; transform: translate(-0%,-50%); background: rgb(202, 202, 202);"
<span style="left: 50%; transform: translate(-50%,-50%); background: rgb(202, 202, 202);"
class="van-progress__pivot"
>
0%
50%
</span>
</div>
<div style="display: flex; justify-content: space-around;">
<div style="margin-top: 15px;">
<button type="button"
class="van-button van-button--default van-button--normal"
class="van-button van-button--primary van-button--small"
>
<div class="van-button__content">
<span class="van-button__text">
decrease
Add
</span>
</div>
</button>
<button type="button"
class="van-button van-button--default van-button--normal"
class="van-button van-button--danger van-button--small"
>
<div class="van-button__content">
<span class="van-button__text">
increase
Decrease
</span>
</div>
</button>