Carousel 轮播
示例
Index
Interval (in ms
)
Size
Compactness
Indicator types
Others
当前是第 1 页,共 3 页
<template>
<article>
<section>
<h4>Index</h4>
<veui-number-input
v-model="index"
ui="tiny"
:min="0"
:max="items.length - 1"
/>
<h4>Interval (in <code>ms</code>)</h4>
<veui-number-input
v-model="interval"
ui="tiny"
:min="1000"
:step="1000"
/>
</section>
<section>
<h4>Size</h4>
<veui-radio-group
v-model="size"
:items="sizes"
/>
</section>
<section>
<h4>Compactness</h4>
<veui-radio-group
v-model="style"
:items="styles"
/>
</section>
<section>
<h4>Indicator types</h4>
<veui-radio-group
v-model="indicator"
:items="indicators"
/>
</section>
<section>
<h4>Others</h4>
<veui-checkbox v-model="wrap">
Repated
</veui-checkbox>
<veui-checkbox v-model="autoplay">
Autoplay
</veui-checkbox>
<veui-checkbox v-model="pauseOnHover">
Pause on hover
</veui-checkbox>
</section>
<section>
<veui-carousel
:datasource="items"
:index.sync="index"
:interval="interval"
:wrap="wrap"
:autoplay="autoplay"
:pause-on-hover="pauseOnHover"
:indicator="indicator"
:ui="ui"
/>
</section>
</article>
</template>
<script>
import { Carousel, NumberInput, Checkbox, RadioGroup } from 'veui'
export default {
components: {
'veui-carousel': Carousel,
'veui-number-input': NumberInput,
'veui-checkbox': Checkbox,
'veui-radio-group': RadioGroup
},
data () {
return {
items: [
{
src:
'https://ecmb.bdimg.com/public01/one-design/2b77cc4a4c5c906993c0e512f3ddaf03.jpg',
alt: 'A cute kitty looking at you with its greenish eyes.',
label: 'Cat'
},
{
src:
'https://ecmb.bdimg.com/public01/one-design/6fedc62b9221846ce5114c7447622e47.jpeg',
alt: 'A common kingfisher flying above river.',
label: 'Kingfisher'
},
{
src:
'https://ecmb.bdimg.com/public01/one-design/e1b6473c898d9e456452ee79d7533a86.jpeg',
alt: 'A white and gray dolphin in blue water.',
label: 'Dolphin'
}
],
index: 0,
interval: 3000,
wrap: true,
autoplay: true,
pauseOnHover: true,
sizes: [
{ label: 'Small', value: 'small' },
{ label: 'Normal', value: 'normal' },
{ label: 'Large', value: 'large' }
],
size: 'normal',
styles: [
{ label: 'Normal', value: 'normal' },
{ label: 'Loose', value: 'loose' }
],
style: 'normal',
indicators: [
{ label: 'Radio', value: 'radio' },
{ label: 'Number', value: 'number' },
{ label: 'Tab', value: 'tab' },
{ label: 'None', value: 'none' }
],
indicator: 'radio'
}
},
computed: {
ui () {
return [this.size, this.style].filter(s => s !== 'normal').join(' ')
}
}
}
</script>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ui | string | - | 预设样式。
| ||||||||||||
datasource | Array<Object> | [] | 轮播图数据源,项目类型为:
| ||||||||||||
index | number | 0 |
当前轮播图序号。 | ||||||||||||
indicator | string | 'radio' | 播放进度指示器的显示模式。
| ||||||||||||
switch-trigger | string | 'click' | 当显示单选型指示器时,触发切换的操作。
| ||||||||||||
autoplay | boolean | false | 是否自动轮播。 | ||||||||||||
pause-on-hover | boolean | false | 在自动轮播时,鼠标悬浮后是否暂停。 | ||||||||||||
interval | number | 3000 | 在自动轮播时,切换间隔的毫秒数。 | ||||||||||||
wrap | boolean | false | 是否可以循环播放。 |
插槽
名称 | 描述 |
---|---|
item | 可用来定制每个轮播项的区域。 默认内容:轮播项图片。 作用域参数为 |
事件
名称 | 描述 |
---|---|
change | 切换后触发,回调参数为 |
图标
名称 | 描述 |
---|---|
prev | 上一页。 |
next | 下一页。 |