mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* fix: Tabbar icon line-height * [new feature] progress add showPivot prop * [new feature] TabItem support vue-router * [new feature] update document header style * [Doc] add toast english ducoment * [new feature] add i18n support * feat: Extract demos from markdown * feat: Base components demos * [new feature] complete demo extract & translate * [fix] text cases * fix: add deepAssign test cases * fix: changelog detail * [new feature] AddressEdit support i18n
80 lines
1.7 KiB
Vue
80 lines
1.7 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="$t('basicUsage')">
|
|
<van-swipe :autoplay="3000">
|
|
<van-swipe-item>1</van-swipe-item>
|
|
<van-swipe-item>2</van-swipe-item>
|
|
<van-swipe-item>3</van-swipe-item>
|
|
<van-swipe-item>4</van-swipe-item>
|
|
</van-swipe>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('title2')">
|
|
<van-swipe :autoplay="3000">
|
|
<van-swipe-item v-for="(image, index) in images" :key="index">
|
|
<img v-lazy="image" />
|
|
</van-swipe-item>
|
|
</van-swipe>
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
title2: '图片懒加载'
|
|
},
|
|
'en-US': {
|
|
title2: 'Image Lazyload'
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
images: [
|
|
'https://img.yzcdn.cn/public_files/2017/09/05/3bd347e44233a868c99cf0fe560232be.jpg',
|
|
'https://img.yzcdn.cn/public_files/2017/09/05/c0dab461920687911536621b345a0bc9.jpg',
|
|
'https://img.yzcdn.cn/public_files/2017/09/05/4e3ea0898b1c2c416eec8c11c5360833.jpg',
|
|
'https://img.yzcdn.cn/public_files/2017/09/05/fd08f07665ed67d50e11b32a21ce0682.jpg'
|
|
]
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
.demo-swipe {
|
|
padding-bottom: 30px;
|
|
|
|
.van-swipe {
|
|
cursor: pointer;
|
|
|
|
&-item {
|
|
color: #fff;
|
|
min-height: 140px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
line-height: 150px;
|
|
|
|
&:nth-child(even) {
|
|
background-color: #39a9ed;
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
background-color: #66c6f2;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 240px;
|
|
display: block;
|
|
padding: 30px 60px;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
</style> |